mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-27 12:50:09 +00:00
Bug 1340583 - Part 5: Regenerate test262 files. rs=shu
--HG-- extra : rebase_source : 3ea3736130c8aafbaa999b651aa495fb6317d0be
This commit is contained in:
parent
67da1dfd6a
commit
9c682ab8af
@ -1,90 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: Optional HTMLCloseComment following MultiLineComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
MultiLineComment ::
|
||||
/* FirstCommentLine[opt] LineTerminator MultiLineCommentChars[opt] * / HTMLCloseComment[opt]
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
/*
|
||||
*/-->
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/* optional FirstCommentLine
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
optional
|
||||
MultiLineCommentChars */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/ /* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/ /**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// The V8 engine exhibited a bug where HTMLCloseComment was not recognized
|
||||
// within MultiLineComment in cases where MultiLineComment was not the first
|
||||
// token on the line of source text. The following tests demonstrate the same
|
||||
// productions listed above with the addition of such a leading token.
|
||||
|
||||
0/*
|
||||
*/-->
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/* optional FirstCommentLine
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
optional
|
||||
MultiLineCommentChars */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/ /* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/ /**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 12) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
// |reftest| error:Test262Error
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: Optional HTMLCloseComment following MultiLineComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
MultiLineComment ::
|
||||
/* FirstCommentLine[opt] LineTerminator MultiLineCommentChars[opt] * / HTMLCloseComment[opt]
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
/*
|
||||
*/-->
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/* optional FirstCommentLine
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
optional
|
||||
MultiLineCommentChars */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/ /* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/*
|
||||
*/ /**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// The V8 engine exhibited a bug where HTMLCloseComment was not recognized
|
||||
// within MultiLineComment in cases where MultiLineComment was not the first
|
||||
// token on the line of source text. The following tests demonstrate the same
|
||||
// productions listed above with the addition of such a leading token.
|
||||
|
||||
0/*
|
||||
*/-->
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/* optional FirstCommentLine
|
||||
*/-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
optional
|
||||
MultiLineCommentChars */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/ /* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
0/*
|
||||
*/ /**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 12) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: >
|
||||
A SingleLineHTMLCloseComment is considered to be a LineTerminator for
|
||||
purposes of parsing by the syntactic grammar.
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
MultiLineComment ::
|
||||
/* FirstCommentLine[opt] LineTerminator MultiLineCommentChars[opt] * / HTMLCloseComment[opt]
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var foo = [23]
|
||||
-->[0];
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (foo[0] === 23) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
// |reftest| error:Test262Error
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: >
|
||||
A SingleLineHTMLCloseComment is considered to be a LineTerminator for
|
||||
purposes of parsing by the syntactic grammar.
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
MultiLineComment ::
|
||||
/* FirstCommentLine[opt] LineTerminator MultiLineCommentChars[opt] * / HTMLCloseComment[opt]
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var foo = [23]
|
||||
-->[0];
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (foo[0] === 23) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: SingleLineHTMLCloseComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
SingleLineHTMLCloseComment ::
|
||||
LineTerminatorSequenceHTMLCloseComment
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
-->
|
||||
counter += 1;
|
||||
|
||||
-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 5) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
// |reftest| error:Test262Error
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: SingleLineHTMLCloseComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
SingleLineHTMLCloseComment ::
|
||||
LineTerminatorSequenceHTMLCloseComment
|
||||
|
||||
HTMLCloseComment ::
|
||||
WhiteSpaceSequence[opt] SingleLineDelimitedCommentSequence[opt] --> SingleLineCommentChars[opt]
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
-->
|
||||
counter += 1;
|
||||
|
||||
-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/* optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
/**/ /* second optional SingleLineDelimitedCommentSequence */-->the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 5) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: SingleLineHTMLOpenComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
SingleLineHTMLOpenComment ::
|
||||
<!--SingleLineCommentCharsopt
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
<!--
|
||||
counter += 1;
|
||||
|
||||
<!--the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
counter += 1;<!--the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
var x = 0;
|
||||
x = -1 <!--x;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 4 && x === -1) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
// |reftest| error:Test262Error
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-html-like-comments
|
||||
es6id: B1.3
|
||||
description: SingleLineHTMLOpenComment
|
||||
info: |
|
||||
Comment ::
|
||||
MultiLineComment
|
||||
SingleLineComment
|
||||
SingleLineHTMLOpenComment
|
||||
SingleLineHTMLCloseComment
|
||||
SingleLineDelimitedComment
|
||||
|
||||
SingleLineHTMLOpenComment ::
|
||||
<!--SingleLineCommentCharsopt
|
||||
negative:
|
||||
phase: runtime
|
||||
type: Test262Error
|
||||
---*/
|
||||
|
||||
var counter = 0;
|
||||
<!--
|
||||
counter += 1;
|
||||
|
||||
<!--the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
counter += 1;<!--the comment extends to these characters
|
||||
counter += 1;
|
||||
|
||||
var x = 0;
|
||||
x = -1 <!--x;
|
||||
|
||||
// Because this test concerns the interpretation of non-executable character
|
||||
// sequences within ECMAScript source code, special care must be taken to
|
||||
// ensure that executable code is evaluated as expected.
|
||||
//
|
||||
// Express the intended behavior by intentionally throwing an error; this
|
||||
// guarantees that test runners will only consider the test "passing" if
|
||||
// executable sequences are correctly interpreted as such.
|
||||
if (counter === 4 && x === -1) {
|
||||
throw new Test262Error();
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-__proto__-property-names-in-object-initializers
|
||||
es6id: B.3.1
|
||||
description: Duplicate `__proto__` property
|
||||
info: |
|
||||
It is a Syntax Error if PropertyNameList of PropertyDefinitionList contains
|
||||
any duplicate entries for "__proto__" and at least two of those entries
|
||||
were obtained from productions of the form
|
||||
PropertyDefinition : PropertyName : AssignmentExpression .
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
({
|
||||
__proto__: null,
|
||||
other: null,
|
||||
'__proto__': null
|
||||
});
|
@ -0,0 +1,22 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-__proto__-property-names-in-object-initializers
|
||||
es6id: B.3.1
|
||||
description: Duplicate `__proto__` property
|
||||
info: |
|
||||
It is a Syntax Error if PropertyNameList of PropertyDefinitionList contains
|
||||
any duplicate entries for "__proto__" and at least two of those entries
|
||||
were obtained from productions of the form
|
||||
PropertyDefinition : PropertyName : AssignmentExpression .
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
({
|
||||
__proto__: null,
|
||||
other: null,
|
||||
'__proto__': null
|
||||
});
|
@ -1,17 +0,0 @@
|
||||
'use strict';
|
||||
// Copyright (C) 2014 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 12.2.8
|
||||
description: >
|
||||
The expression within the template should be evaluated according to the
|
||||
semantics of the surrounding context.
|
||||
The SV of EscapeSequence :: HexEscapeSequence is the SV of the
|
||||
HexEscapeSequence.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
`${'\07'}`;
|
@ -0,0 +1,18 @@
|
||||
// |reftest| error:SyntaxError
|
||||
'use strict';
|
||||
// Copyright (C) 2014 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 12.2.8
|
||||
description: >
|
||||
The expression within the template should be evaluated according to the
|
||||
semantics of the surrounding context.
|
||||
The SV of EscapeSequence :: HexEscapeSequence is the SV of the
|
||||
HexEscapeSequence.
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
`${'\07'}`;
|
@ -1,14 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in heads prohibit AssignmentExpressions
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
var a;
|
||||
throw NotEarlyError;
|
||||
for (a = 0 in {});
|
||||
|
@ -0,0 +1,15 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in heads prohibit AssignmentExpressions
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
var a;
|
||||
throw NotEarlyError;
|
||||
for (a = 0 in {});
|
||||
|
@ -1,13 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with const are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (const a = 0 in {});
|
||||
|
@ -0,0 +1,14 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with const are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (const a = 0 in {});
|
||||
|
@ -1,13 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with let are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (let a = 0 in {});
|
||||
|
@ -0,0 +1,14 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with let are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (let a = 0 in {});
|
||||
|
@ -1,15 +0,0 @@
|
||||
'use strict';
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers in strict mode are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var a = 0 in {});
|
||||
|
@ -0,0 +1,16 @@
|
||||
// |reftest| error:SyntaxError
|
||||
'use strict';
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers in strict mode are prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var a = 0 in {});
|
||||
|
@ -1,13 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with ArrayBindingPatterns are always prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var [a] = 0 in {});
|
||||
|
@ -0,0 +1,14 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with ArrayBindingPatterns are always prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var [a] = 0 in {});
|
||||
|
@ -1,13 +0,0 @@
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with ObjectBindingPattern are always prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var {a} = 0 in {});
|
||||
|
@ -0,0 +1,14 @@
|
||||
// |reftest| error:SyntaxError
|
||||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-initializers-in-forin-statement-heads
|
||||
description: >
|
||||
for-in initializers with ObjectBindingPattern are always prohibited
|
||||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
---*/
|
||||
throw NotEarlyError;
|
||||
for (var {a} = 0 in {});
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
Arun Purushan <arun.etm@gmail.com>
|
||||
Benjamin Bouvier <public@benj.me>
|
||||
Bill Budge <bbudge@chromium.org>
|
||||
@ -11,5 +10,3 @@ Jakob Stoklund Olesen <jolesen@mozilla.com>
|
||||
John McCutchan <john@johnmccutchan.com>
|
||||
Ningxin Hu <ningxin.hu@intel.com>
|
||||
Peter Jensen <peter.jensen@intel.com>
|
||||
|
||||
reportCompare(0, 0);
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('SIMD')) -- needs SIMD
|
||||
// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2013 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright (C) 2016 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Google Inc. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2011-2012 Norbert Lindenberg. All rights reserved.
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright (C) 2016 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
// |reftest| skip-if(!this.hasOwnProperty('Intl')) -- needs Intl
|
||||
// Copyright (C) 2016 André Bargull. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user