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.
This commit is contained in:
Leonardo Balter 2016-06-23 17:53:11 -04:00 committed by Mike Pennisi
parent 1eaae52eb8
commit 059b7cd4a3
2 changed files with 0 additions and 18 deletions

View File

@ -1,9 +0,0 @@
// 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');

View File

@ -1,9 +0,0 @@
// 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');