Bug 1903329 - Update test expectations; r=peterv

Differential Revision: https://phabricator.services.mozilla.com/D214260
This commit is contained in:
Daniel Minor 2024-06-23 23:41:40 +00:00
parent 5b77b7ea55
commit 0385811586
4 changed files with 5 additions and 1 deletions

View File

@ -63,6 +63,7 @@ let ecmaGlobals = [
"Error",
"EvalError",
"FinalizationRegistry",
"Float16Array",
"Float32Array",
"Float64Array",
"Function",

View File

@ -96,6 +96,7 @@ let ecmaGlobals = [
{ name: "Error", insecureContext: true },
{ name: "EvalError", insecureContext: true },
{ name: "FinalizationRegistry", insecureContext: true },
{ name: "Float16Array", insecureContext: true },
{ name: "Float32Array", insecureContext: true },
{ name: "Float64Array", insecureContext: true },
{ name: "Function", insecureContext: true },

View File

@ -69,6 +69,7 @@ let ecmaGlobals = [
{ name: "Error", insecureContext: true },
{ name: "EvalError", insecureContext: true },
{ name: "FinalizationRegistry", insecureContext: true },
{ name: "Float16Array", insecureContext: true },
{ name: "Float32Array", insecureContext: true },
{ name: "Float64Array", insecureContext: true },
{ name: "Function", insecureContext: true },

View File

@ -336,7 +336,8 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681
"getInt32", "getUint32", "getFloat32", "getFloat64",
"setInt8", "setUint8", "setInt16", "setUint16",
"setInt32", "setUint32", "setFloat32", "setFloat64",
"getBigInt64", "getBigUint64", "setBigInt64", "setBigUint64"]
"getBigInt64", "getBigUint64", "setBigInt64", "setBigUint64",
"getFloat16", "setFloat16"];
gConstructorProperties.DataView = constructorProps([]);
// Sort an array that may contain symbols as well as strings.