Backed out 2 changesets (bug 1512989) for jsreftests failures

Backed out changeset 4c79e8192f9f (bug 1512989)
Backed out changeset 59a6d8169f80 (bug 1512989)

--HG--
rename : js/src/tests/non262/Date/parse-from-tostring-methods.js => js/src/tests/ecma_6/Date/parse-from-tostring-methods.js
This commit is contained in:
Noemi Erli 2018-12-12 23:54:45 +02:00
parent fcd9f9a2a9
commit e4cf4cb51a
545 changed files with 231 additions and 603 deletions

View File

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

View File

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

View File

@ -89,28 +89,6 @@ 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-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 #
@ -526,6 +504,3 @@ skip script test262/harness/detachArrayBuffer.js
# 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

View File

@ -1,12 +1,3 @@
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") {
var setTimeZone = SpecialPowers.Cu.getJSTestingFunctions().setTimeZone;
}

View File

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

View File

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

View File

@ -1,12 +1,5 @@
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() {
const ropes = {};

View File

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

View File

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

View File

@ -1,5 +1,3 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs grayRoot
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* 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

View File

@ -1,5 +1,3 @@
// |reftest| skip-if(!xulRuntime.shell) -- needs grayRoot
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* 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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Some files were not shown because too many files have changed in this diff Show More