Skip to content
Snippets Groups Projects
Commit 059b7cd4 authored by Leonardo Balter's avatar Leonardo Balter Committed by Mike Pennisi
Browse files

Remove invalid tests

ConversionError and RegExpError tests are methods that existed on
something that preceeded a IE9 Standard. They do not exist in the
specs, at least since ES5.

It's not test262 responsibility to maintain these tests as these
features can be freely implemented by any runtime.
parent 1eaae52e
No related branches found
No related tags found
No related merge requests found
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.11-1
description: Error - ConversionError has been removed from IE9 standard mode
---*/
assert.sameValue(typeof ConversionError, "undefined", 'typeof ConversionError');
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.11-2
description: Error - RegExpError has been removed from IE9 standard mode
---*/
assert.sameValue(typeof RegExpError, "undefined", 'typeof RegExpError');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment