Bug 1512989 - Part 2: Fix browser jstests failures. r=jorendorff

--HG--
rename : js/src/tests/ecma_6/Date/parse-from-tostring-methods.js => js/src/tests/non262/Date/parse-from-tostring-methods.js
This commit is contained in:
André Bargull 2018-12-13 04:10:06 -08:00
Родитель 64d64e482d
Коммит 6c89dc30b2
545 изменённых файлов: 624 добавлений и 245 удалений

Просмотреть файл

@ -16,6 +16,7 @@ TEST_FILES = \
shell/ \ shell/ \
test/ \ test/ \
test262/ \ test262/ \
whatwg/ \
$(NULL) $(NULL)
PKG_STAGE = $(DIST)/test-stage PKG_STAGE = $(DIST)/test-stage

Просмотреть файл

@ -38,6 +38,7 @@
var URL = global.URL; var URL = global.URL;
var document = global.document; var document = global.document;
var documentAll = global.document.all;
var documentDocumentElement = global.document.documentElement; var documentDocumentElement = global.document.documentElement;
var DocumentCreateElement = global.document.createElement; var DocumentCreateElement = global.document.createElement;
@ -194,6 +195,15 @@
global.detachArrayBuffer = detachArrayBuffer; global.detachArrayBuffer = detachArrayBuffer;
} }
var createIsHTMLDDA = global.createIsHTMLDDA;
if (typeof createIsHTMLDDA !== "function") {
createIsHTMLDDA = function() {
return documentAll;
};
global.createIsHTMLDDA = createIsHTMLDDA;
}
})(this); })(this);
(function(global) { (function(global) {

Просмотреть файл

@ -89,6 +89,28 @@ skip-if(!xulRuntime.shell) script test262/language/global-code/script-decl-func-
skip-if(!xulRuntime.shell) script test262/language/global-code/script-decl-lex.js skip-if(!xulRuntime.shell) script test262/language/global-code/script-decl-lex.js
skip-if(!xulRuntime.shell) script test262/language/global-code/script-decl-var-err.js skip-if(!xulRuntime.shell) script test262/language/global-code/script-decl-var-err.js
# Global var-bindings are configurable in a browser environment.
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/block-decl-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/block-decl-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-decl-a-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-decl-a-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-decl-b-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-decl-b-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-stmt-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-else-stmt-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-no-else-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-decl-no-else-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-stmt-else-decl-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/if-stmt-else-decl-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/switch-case-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/switch-case-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/switch-dflt-global-existing-global-init.js
skip-if(!xulRuntime.shell) script test262/annexB/language/global-code/switch-dflt-global-init.js
skip-if(!xulRuntime.shell) script test262/language/eval-code/direct/var-env-var-init-global-exstng.js
skip-if(!xulRuntime.shell) script test262/language/eval-code/indirect/var-env-var-init-global-exstng.js
skip-if(!xulRuntime.shell) script test262/language/global-code/decl-func.js
skip-if(!xulRuntime.shell) script test262/language/global-code/decl-var.js
################################################## ##################################################
# Test262 tests skipped due to SpiderMonkey bugs # # Test262 tests skipped due to SpiderMonkey bugs #
@ -504,3 +526,6 @@ skip script test262/harness/detachArrayBuffer.js
# Tests disabled due to invalid test expectations # # Tests disabled due to invalid test expectations #
#################################################### ####################################################
# https://github.com/tc39/test262/pull/1965
skip script test262/language/expressions/dynamic-import/indirect-resolution.js
skip script test262/language/expressions/dynamic-import/namespace/default-property-not-set-own.js

Просмотреть файл

@ -39,16 +39,17 @@ function TZAtDate(d){
return d.getTimezoneOffset() * 60000; return d.getTimezoneOffset() * 60000;
} }
function TZInMonth(month){ function TZInMonth(month, year){
return TZAtDate(new Date(dd(2009,month,1,0,0,0,0))); return TZAtDate(new Date(dd(year,month,1,0,0,0,0)));
} }
function test() function test()
{ {
printBugNumber(BUGNUMBER); printBugNumber(BUGNUMBER);
JanTZ = TZInMonth(1); Jan1970TZ = TZInMonth(1, 1970);
JulTZ = TZInMonth(7); Jan2009TZ = TZInMonth(1, 2009);
Jul2009TZ = TZInMonth(7, 2009);
CurrTZ = TZAtDate(new Date()); CurrTZ = TZAtDate(new Date());
// formats with explicit timezone // formats with explicit timezone
@ -69,21 +70,21 @@ function test()
check("T19:53+12:00", dd(1970,1,1,7,53,0,0)); check("T19:53+12:00", dd(1970,1,1,7,53,0,0));
// formats without timezone uses the timezone as at that date // formats without timezone uses the timezone as at that date
check("2009-07-23T19:53:21.001", dd(2009,7,23,19,53,21,1)+JulTZ); check("2009-07-23T19:53:21.001", dd(2009,7,23,19,53,21,1)+Jul2009TZ);
check("2009-07-23T19:53:21", dd(2009,7,23,19,53,21,0)+JulTZ); check("2009-07-23T19:53:21", dd(2009,7,23,19,53,21,0)+Jul2009TZ);
check("2009-07-23T19:53", dd(2009,7,23,19,53,0,0)+JulTZ); check("2009-07-23T19:53", dd(2009,7,23,19,53,0,0)+Jul2009TZ);
check("2009-07T19:53:21.001", dd(2009,7,1,19,53,21,1)+JulTZ); check("2009-07T19:53:21.001", dd(2009,7,1,19,53,21,1)+Jul2009TZ);
check("2009-07T19:53:21", dd(2009,7,1,19,53,21,0)+JulTZ); check("2009-07T19:53:21", dd(2009,7,1,19,53,21,0)+Jul2009TZ);
check("2009-07T19:53", dd(2009,7,1,19,53,0,0)+JulTZ); check("2009-07T19:53", dd(2009,7,1,19,53,0,0)+Jul2009TZ);
check("2009T19:53:21.001", dd(2009,1,1,19,53,21,1)+JanTZ); check("2009T19:53:21.001", dd(2009,1,1,19,53,21,1)+Jan2009TZ);
check("2009T19:53:21", dd(2009,1,1,19,53,21,0)+JanTZ); check("2009T19:53:21", dd(2009,1,1,19,53,21,0)+Jan2009TZ);
check("2009T19:53", dd(2009,1,1,19,53,0,0)+JanTZ); check("2009T19:53", dd(2009,1,1,19,53,0,0)+Jan2009TZ);
check("T19:53:21.001", dd(1970,1,1,19,53,21,1)+JanTZ); check("T19:53:21.001", dd(1970,1,1,19,53,21,1)+Jan1970TZ);
check("T19:53:21", dd(1970,1,1,19,53,21,0)+JanTZ); check("T19:53:21", dd(1970,1,1,19,53,21,0)+Jan1970TZ);
check("T19:53", dd(1970,1,1,19,53,0,0)+JanTZ); check("T19:53", dd(1970,1,1,19,53,0,0)+Jan1970TZ);
// with no time at all assume UTC // with no time at all assume UTC
check("2009-07-23", dd(2009,7,23,0,0,0,0)); check("2009-07-23", dd(2009,7,23,0,0,0,0));

Просмотреть файл

@ -1,3 +1,12 @@
if (typeof getDefaultLocale === "undefined") {
var getDefaultLocale = SpecialPowers.Cu.getJSTestingFunctions().getDefaultLocale;
}
if (typeof setDefaultLocale === "undefined") {
var setDefaultLocale = SpecialPowers.Cu.getJSTestingFunctions().setDefaultLocale;
}
if (typeof getTimeZone === "undefined") {
var getTimeZone = SpecialPowers.Cu.getJSTestingFunctions().getTimeZone;
}
if (typeof setTimeZone === "undefined") { if (typeof setTimeZone === "undefined") {
var setTimeZone = SpecialPowers.Cu.getJSTestingFunctions().setTimeZone; var setTimeZone = SpecialPowers.Cu.getJSTestingFunctions().setTimeZone;
} }

Просмотреть файл

@ -15,7 +15,14 @@ for (let date of dates) {
// Ensure parsing the results of toString(), toUTCString(), and toISOString() // Ensure parsing the results of toString(), toUTCString(), and toISOString()
// gives the same time value as required by 20.3.3.2 Date.parse. // gives the same time value as required by 20.3.3.2 Date.parse.
assertEq(Date.parse(d.toString()), timeValue, `Cannot parse from toString() of "${date}"`); //
// Additional requirement not present in ES2019 draft rev 7acacc524213058a2368b5fa751fac7ea08ba230:
// The time zone offset must not contain seconds (or milliseconds) for |Date.parse(x.toString())|
// to be equal to |x.valueOf()|.
let tz = d.getTimezoneOffset();
if (Math.trunc(tz) === tz) {
assertEq(Date.parse(d.toString()), timeValue, `Cannot parse from toString() of "${date}"`);
}
assertEq(Date.parse(d.toUTCString()), timeValue, `Cannot parse from toUTCString() of "${date}"`); assertEq(Date.parse(d.toUTCString()), timeValue, `Cannot parse from toUTCString() of "${date}"`);
assertEq(Date.parse(d.toISOString()), timeValue, `Cannot parse from toISOString() of "${date}"`); assertEq(Date.parse(d.toISOString()), timeValue, `Cannot parse from toISOString() of "${date}"`);
} }

Просмотреть файл

@ -1,3 +1,5 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs drainJobQueue
// Spot-check subclassing of stream constructors. // Spot-check subclassing of stream constructors.
// ReadableStream can be subclassed. // ReadableStream can be subclassed.

Просмотреть файл

@ -1,3 +1,5 @@
// |reftest| skip-if(!xulRuntime.shell)
var BUGNUMBER = 1509768; var BUGNUMBER = 1509768;
var summary = "String#replace with an empty string pattern on a rope should prepend the replacement string."; var summary = "String#replace with an empty string pattern on a rope should prepend the replacement string.";

Просмотреть файл

@ -1,5 +1,12 @@
print("Stress test of ropes"); print("Stress test of ropes");
if (typeof newRope === "undefined") {
var newRope = SpecialPowers.Cu.getJSTestingFunctions().newRope;
}
if (typeof ensureFlatString === "undefined") {
var ensureFlatString = SpecialPowers.Cu.getJSTestingFunctions().ensureFlatString;
}
function createRopes() { function createRopes() {
const ropes = {}; const ropes = {};

Просмотреть файл

@ -1,10 +1,13 @@
// Global functions are configurable in a browser environment.
var functionDeclarationsConfigurable = typeof document !== "undefined";
var o = { f: "string-f" }; var o = { f: "string-f" };
with (o) { with (o) {
var desc = Object.getOwnPropertyDescriptor(this, "f"); var desc = Object.getOwnPropertyDescriptor(this, "f");
assertEq(desc.value, undefined); assertEq(desc.value, undefined);
assertEq(desc.writable, true); assertEq(desc.writable, true);
assertEq(desc.enumerable, true); assertEq(desc.enumerable, true);
assertEq(desc.configurable, false); assertEq(desc.configurable, functionDeclarationsConfigurable);
function f() { function f() {
return "fun-f"; return "fun-f";
} }

Просмотреть файл

@ -1,3 +1,5 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs grayRoot
var wm = new WeakMap(); var wm = new WeakMap();
grayRoot().map = wm; grayRoot().map = wm;
wm = null; wm = null;

Просмотреть файл

@ -1,3 +1,5 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs grayRoot
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this

Просмотреть файл

@ -1,3 +1,5 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs grayRoot
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this

Просмотреть файл

@ -1,7 +1,4 @@
if (!this.oomTest) { // |reftest| skip-if(!this.hasOwnProperty("oomTest"))
this.reportCompare && reportCompare(true, true);
quit(0);
}
let lfPreamble = ` let lfPreamble = `
`; `;

Просмотреть файл

@ -26,7 +26,6 @@ UNSUPPORTED_FEATURES = set([
"class-static-fields-private", "class-static-fields-private",
"class-methods-private", "class-methods-private",
"class-static-methods-private", "class-static-methods-private",
"dynamic-import",
"regexp-dotall", "regexp-dotall",
"regexp-lookbehind", "regexp-lookbehind",
"regexp-named-groups", "regexp-named-groups",
@ -44,6 +43,7 @@ FEATURE_CHECK_NEEDED = {
"SharedArrayBuffer": "!this.hasOwnProperty('SharedArrayBuffer')", "SharedArrayBuffer": "!this.hasOwnProperty('SharedArrayBuffer')",
"Intl.ListFormat": "!Intl.hasOwnProperty('ListFormat')", "Intl.ListFormat": "!Intl.hasOwnProperty('ListFormat')",
"Intl.Segmenter": "!Intl.hasOwnProperty('Segmenter')", "Intl.Segmenter": "!Intl.hasOwnProperty('Segmenter')",
"dynamic-import": "!xulRuntime.shell",
} }
RELEASE_OR_BETA = set() RELEASE_OR_BETA = set()

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// Copyright (C) 2018 Leo Balter. All rights reserved. // Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-arrow.template // - src/dynamic-import/catch/nested-arrow.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-arrow-fn-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template // - src/dynamic-import/catch/nested-async-arrow-fn-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-function-await.template // - src/dynamic-import/catch/nested-async-function-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-function-return-await.template // - src/dynamic-import/catch/nested-async-function-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-function.template // - src/dynamic-import/catch/nested-async-function.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-circular.case // - src/dynamic-import/instn-iee-err-circular.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/specifier-tostring-abrupt-rejects.case // - src/dynamic-import/specifier-tostring-abrupt-rejects.case
// - src/dynamic-import/catch/nested-async-generator-await.template // - src/dynamic-import/catch/nested-async-generator-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-typeerror.case // - src/dynamic-import/eval-rqstd-abrupt-typeerror.case
// - src/dynamic-import/catch/nested-async-generator-return-await.template // - src/dynamic-import/catch/nested-async-generator-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-rqstd-abrupt-urierror.case // - src/dynamic-import/eval-rqstd-abrupt-urierror.case
// - src/dynamic-import/catch/nested-async-generator-return-await.template // - src/dynamic-import/catch/nested-async-generator-return-await.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| module // |reftest| skip-if(!xulRuntime.shell) module -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/eval-script-code-target.case // - src/dynamic-import/eval-script-code-target.case
// - src/dynamic-import/catch/nested-async-generator-return-await.template // - src/dynamic-import/catch/nested-async-generator-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/file-does-not-exist.case // - src/dynamic-import/file-does-not-exist.case
// - src/dynamic-import/catch/nested-async-generator-return-await.template // - src/dynamic-import/catch/nested-async-generator-return-await.template

Просмотреть файл

@ -1,3 +1,4 @@
// |reftest| skip-if(!xulRuntime.shell) -- dynamic-import is not enabled unconditionally
// This file was procedurally generated from the following sources: // This file was procedurally generated from the following sources:
// - src/dynamic-import/instn-iee-err-ambiguous-import.case // - src/dynamic-import/instn-iee-err-ambiguous-import.case
// - src/dynamic-import/catch/nested-async-generator-return-await.template // - src/dynamic-import/catch/nested-async-generator-return-await.template

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше