terser 1.2.2 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/terser/version.rb +1 -1
- data/lib/terser.js +1101 -181
- metadata +3 -3
data/lib/terser.js
CHANGED
@@ -1172,9 +1172,8 @@ var LOGICAL_ASSIGNMENT = makePredicate([ "??=", "&&=", "||=" ]);
|
|
1172
1172
|
|
1173
1173
|
var PRECEDENCE = (function(a, ret) {
|
1174
1174
|
for (var i = 0; i < a.length; ++i) {
|
1175
|
-
|
1176
|
-
|
1177
|
-
ret[b[j]] = i + 1;
|
1175
|
+
for (const op of a[i]) {
|
1176
|
+
ret[op] = i + 1;
|
1178
1177
|
}
|
1179
1178
|
}
|
1180
1179
|
return ret;
|
@@ -2526,29 +2525,6 @@ function parse($TEXT, options) {
|
|
2526
2525
|
if (is("template_head")) {
|
2527
2526
|
return subscripts(template_string(), allow_calls);
|
2528
2527
|
}
|
2529
|
-
if (is("privatename")) {
|
2530
|
-
if(!S.in_class) {
|
2531
|
-
croak("Private field must be used in an enclosing class");
|
2532
|
-
}
|
2533
|
-
|
2534
|
-
const start = S.token;
|
2535
|
-
const key = new AST_SymbolPrivateProperty({
|
2536
|
-
start,
|
2537
|
-
name: start.value,
|
2538
|
-
end: start
|
2539
|
-
});
|
2540
|
-
next();
|
2541
|
-
expect_token("operator", "in");
|
2542
|
-
|
2543
|
-
const private_in = new AST_PrivateIn({
|
2544
|
-
start,
|
2545
|
-
key,
|
2546
|
-
value: subscripts(as_atom_node(), allow_calls),
|
2547
|
-
end: prev()
|
2548
|
-
});
|
2549
|
-
|
2550
|
-
return subscripts(private_in, allow_calls);
|
2551
|
-
}
|
2552
2528
|
if (ATOMIC_START_TOKEN.has(S.token.type)) {
|
2553
2529
|
return subscripts(as_atom_node(), allow_calls);
|
2554
2530
|
}
|
@@ -3448,7 +3424,7 @@ function parse($TEXT, options) {
|
|
3448
3424
|
var prec = op != null ? PRECEDENCE[op] : null;
|
3449
3425
|
if (prec != null && (prec > min_prec || (op === "**" && min_prec === prec))) {
|
3450
3426
|
next();
|
3451
|
-
var right =
|
3427
|
+
var right = expr_ops(no_in, prec, true);
|
3452
3428
|
return expr_op(new AST_Binary({
|
3453
3429
|
start : left.start,
|
3454
3430
|
left : left,
|
@@ -3460,13 +3436,38 @@ function parse($TEXT, options) {
|
|
3460
3436
|
return left;
|
3461
3437
|
};
|
3462
3438
|
|
3463
|
-
function expr_ops(no_in) {
|
3464
|
-
|
3439
|
+
function expr_ops(no_in, min_prec, allow_calls, allow_arrows) {
|
3440
|
+
// maybe_unary won't return us a AST_SymbolPrivateProperty
|
3441
|
+
if (!no_in && min_prec < PRECEDENCE["in"] && is("privatename")) {
|
3442
|
+
if(!S.in_class) {
|
3443
|
+
croak("Private field must be used in an enclosing class");
|
3444
|
+
}
|
3445
|
+
|
3446
|
+
const start = S.token;
|
3447
|
+
const key = new AST_SymbolPrivateProperty({
|
3448
|
+
start,
|
3449
|
+
name: start.value,
|
3450
|
+
end: start
|
3451
|
+
});
|
3452
|
+
next();
|
3453
|
+
expect_token("operator", "in");
|
3454
|
+
|
3455
|
+
const private_in = new AST_PrivateIn({
|
3456
|
+
start,
|
3457
|
+
key,
|
3458
|
+
value: expr_ops(no_in, PRECEDENCE["in"], true),
|
3459
|
+
end: prev()
|
3460
|
+
});
|
3461
|
+
|
3462
|
+
return expr_op(private_in, 0, no_in);
|
3463
|
+
} else {
|
3464
|
+
return expr_op(maybe_unary(allow_calls, allow_arrows), min_prec, no_in);
|
3465
|
+
}
|
3465
3466
|
}
|
3466
3467
|
|
3467
3468
|
var maybe_conditional = function(no_in) {
|
3468
3469
|
var start = S.token;
|
3469
|
-
var expr = expr_ops(no_in);
|
3470
|
+
var expr = expr_ops(no_in, 0, true, true);
|
3470
3471
|
if (is("operator", "?")) {
|
3471
3472
|
next();
|
3472
3473
|
var yes = expression(false);
|
@@ -7570,6 +7571,19 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
7570
7571
|
});
|
7571
7572
|
},
|
7572
7573
|
|
7574
|
+
ImportExpression: function(M) {
|
7575
|
+
return new AST_Call({
|
7576
|
+
start: my_start_token(M),
|
7577
|
+
end: my_end_token(M),
|
7578
|
+
expression: from_moz({
|
7579
|
+
type: "Identifier",
|
7580
|
+
name: "import"
|
7581
|
+
}),
|
7582
|
+
optional: false,
|
7583
|
+
args: [from_moz(M.source)]
|
7584
|
+
});
|
7585
|
+
},
|
7586
|
+
|
7573
7587
|
ExportAllDeclaration: function(M) {
|
7574
7588
|
var foreign_name = M.exported == null ?
|
7575
7589
|
new AST_SymbolExportForeign({ name: "*" }) :
|
@@ -7637,6 +7651,11 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
7637
7651
|
args.value = { source, flags };
|
7638
7652
|
return new AST_RegExp(args);
|
7639
7653
|
}
|
7654
|
+
const bi = typeof M.value === "bigint" ? M.value.toString() : M.bigint;
|
7655
|
+
if (typeof bi === "string") {
|
7656
|
+
args.value = bi;
|
7657
|
+
return new AST_BigInt(args);
|
7658
|
+
}
|
7640
7659
|
if (val === null) return new AST_Null(args);
|
7641
7660
|
switch (typeof val) {
|
7642
7661
|
case "string":
|
@@ -7704,14 +7723,6 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
7704
7723
|
});
|
7705
7724
|
},
|
7706
7725
|
|
7707
|
-
BigIntLiteral(M) {
|
7708
|
-
return new AST_BigInt({
|
7709
|
-
start : my_start_token(M),
|
7710
|
-
end : my_end_token(M),
|
7711
|
-
value : M.value
|
7712
|
-
});
|
7713
|
-
},
|
7714
|
-
|
7715
7726
|
EmptyStatement: function(M) {
|
7716
7727
|
return new AST_EmptyStatement({
|
7717
7728
|
start: my_start_token(M),
|
@@ -8184,6 +8195,14 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
8184
8195
|
};
|
8185
8196
|
});
|
8186
8197
|
def_to_moz(AST_Call, function To_Moz_CallExpression(M) {
|
8198
|
+
if (M.expression instanceof AST_SymbolRef && M.expression.name === "import") {
|
8199
|
+
const [source] = M.args.map(to_moz);
|
8200
|
+
return {
|
8201
|
+
type: "ImportExpression",
|
8202
|
+
source,
|
8203
|
+
};
|
8204
|
+
}
|
8205
|
+
|
8187
8206
|
return {
|
8188
8207
|
type: "CallExpression",
|
8189
8208
|
callee: to_moz(M.expression),
|
@@ -8729,8 +8748,13 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
8729
8748
|
});
|
8730
8749
|
|
8731
8750
|
def_to_moz(AST_BigInt, M => ({
|
8732
|
-
type: "
|
8733
|
-
value
|
8751
|
+
type: "Literal",
|
8752
|
+
// value cannot be represented natively
|
8753
|
+
// see: https://github.com/estree/estree/blob/master/es2020.md#bigintliteral
|
8754
|
+
value: null,
|
8755
|
+
// `M.value` is a string that may be a hex number representation.
|
8756
|
+
// but "bigint" property should have only decimal digits
|
8757
|
+
bigint: typeof BigInt === "function" ? BigInt(M.value).toString() : M.value,
|
8734
8758
|
}));
|
8735
8759
|
|
8736
8760
|
AST_Boolean.DEFMETHOD("to_mozilla_ast", AST_Constant.prototype.to_mozilla_ast);
|
@@ -9846,25 +9870,66 @@ function OutputStream(options) {
|
|
9846
9870
|
return true;
|
9847
9871
|
// this deals with precedence: 3 * (2 + 1)
|
9848
9872
|
if (p instanceof AST_Binary) {
|
9849
|
-
const
|
9850
|
-
const
|
9873
|
+
const parent_op = p.operator;
|
9874
|
+
const op = this.operator;
|
9875
|
+
|
9876
|
+
// It is forbidden for ?? to be used with || or && without parens.
|
9877
|
+
if (op === "??" && (parent_op === "||" || parent_op === "&&")) {
|
9878
|
+
return true;
|
9879
|
+
}
|
9880
|
+
if (parent_op === "??" && (op === "||" || op === "&&")) {
|
9881
|
+
return true;
|
9882
|
+
}
|
9851
9883
|
|
9852
|
-
|
9884
|
+
const pp = PRECEDENCE[parent_op];
|
9885
|
+
const sp = PRECEDENCE[op];
|
9886
|
+
if (pp > sp
|
9887
|
+
|| (pp == sp
|
9888
|
+
&& (this === p.right || parent_op == "**"))) {
|
9853
9889
|
return true;
|
9854
9890
|
}
|
9891
|
+
}
|
9892
|
+
if (p instanceof AST_PrivateIn) {
|
9893
|
+
const op = this.operator;
|
9855
9894
|
|
9856
|
-
|
9895
|
+
const pp = PRECEDENCE["in"];
|
9896
|
+
const sp = PRECEDENCE[op];
|
9897
|
+
if (pp > sp || (pp == sp && this === p.value)) {
|
9857
9898
|
return true;
|
9858
9899
|
}
|
9900
|
+
}
|
9901
|
+
});
|
9859
9902
|
|
9860
|
-
|
9861
|
-
|
9903
|
+
PARENS(AST_PrivateIn, function(output) {
|
9904
|
+
var p = output.parent();
|
9905
|
+
// (#x in this)()
|
9906
|
+
if (p instanceof AST_Call && p.expression === this) {
|
9907
|
+
return true;
|
9908
|
+
}
|
9909
|
+
// typeof (#x in this)
|
9910
|
+
if (p instanceof AST_Unary) {
|
9911
|
+
return true;
|
9912
|
+
}
|
9913
|
+
// (#x in this)["prop"], (#x in this).prop
|
9914
|
+
if (p instanceof AST_PropAccess && p.expression === this) {
|
9915
|
+
return true;
|
9916
|
+
}
|
9917
|
+
// same precedence as regular in operator
|
9918
|
+
if (p instanceof AST_Binary) {
|
9919
|
+
const parent_op = p.operator;
|
9920
|
+
|
9921
|
+
const pp = PRECEDENCE[parent_op];
|
9922
|
+
const sp = PRECEDENCE["in"];
|
9862
9923
|
if (pp > sp
|
9863
9924
|
|| (pp == sp
|
9864
|
-
&& (this === p.right ||
|
9925
|
+
&& (this === p.right || parent_op == "**"))) {
|
9865
9926
|
return true;
|
9866
9927
|
}
|
9867
9928
|
}
|
9929
|
+
// rules are the same as binary in, but the class differs
|
9930
|
+
if (p instanceof AST_PrivateIn && this === p.value) {
|
9931
|
+
return true;
|
9932
|
+
}
|
9868
9933
|
});
|
9869
9934
|
|
9870
9935
|
PARENS(AST_Yield, function(output) {
|
@@ -10234,7 +10299,9 @@ function OutputStream(options) {
|
|
10234
10299
|
AST_Arrow.DEFMETHOD("_do_print", function(output) {
|
10235
10300
|
var self = this;
|
10236
10301
|
var parent = output.parent();
|
10237
|
-
var needs_parens = (parent instanceof AST_Binary &&
|
10302
|
+
var needs_parens = (parent instanceof AST_Binary &&
|
10303
|
+
!(parent instanceof AST_Assign) &&
|
10304
|
+
!(parent instanceof AST_DefaultAssign)) ||
|
10238
10305
|
parent instanceof AST_Unary ||
|
10239
10306
|
(parent instanceof AST_Call && self === parent.expression);
|
10240
10307
|
if (needs_parens) { output.print("("); }
|
@@ -11607,7 +11674,7 @@ function redefined_catch_def(def) {
|
|
11607
11674
|
}
|
11608
11675
|
}
|
11609
11676
|
|
11610
|
-
AST_Scope.DEFMETHOD("figure_out_scope", function(options, { parent_scope =
|
11677
|
+
AST_Scope.DEFMETHOD("figure_out_scope", function(options, { parent_scope = undefined, toplevel = this } = {}) {
|
11611
11678
|
options = defaults(options, {
|
11612
11679
|
cache: null,
|
11613
11680
|
ie8: false,
|
@@ -11931,7 +11998,7 @@ AST_Scope.DEFMETHOD("add_child_scope", function (scope) {
|
|
11931
11998
|
scope.parent_scope = this;
|
11932
11999
|
|
11933
12000
|
// Propagate to this.uses_arguments from arrow functions
|
11934
|
-
if ((scope instanceof AST_Arrow) && !this.uses_arguments) {
|
12001
|
+
if ((scope instanceof AST_Arrow) && (this instanceof AST_Lambda && !this.uses_arguments)) {
|
11935
12002
|
this.uses_arguments = walk(scope, node => {
|
11936
12003
|
if (
|
11937
12004
|
node instanceof AST_SymbolRef
|
@@ -12998,6 +13065,23 @@ function make_sequence(orig, expressions) {
|
|
12998
13065
|
});
|
12999
13066
|
}
|
13000
13067
|
|
13068
|
+
function make_empty_function(self) {
|
13069
|
+
return make_node(AST_Function, self, {
|
13070
|
+
uses_arguments: false,
|
13071
|
+
argnames: [],
|
13072
|
+
body: [],
|
13073
|
+
is_generator: false,
|
13074
|
+
async: false,
|
13075
|
+
variables: new Map(),
|
13076
|
+
uses_with: false,
|
13077
|
+
uses_eval: false,
|
13078
|
+
parent_scope: null,
|
13079
|
+
enclosed: [],
|
13080
|
+
cname: 0,
|
13081
|
+
block_scope: undefined,
|
13082
|
+
});
|
13083
|
+
}
|
13084
|
+
|
13001
13085
|
function make_node_from_constant(val, orig) {
|
13002
13086
|
switch (typeof val) {
|
13003
13087
|
case "string":
|
@@ -13117,7 +13201,17 @@ function has_break_or_continue(loop, parent) {
|
|
13117
13201
|
// func(something) because that changes the meaning of
|
13118
13202
|
// the func (becomes lexical instead of global).
|
13119
13203
|
function maintain_this_binding(parent, orig, val) {
|
13120
|
-
if (
|
13204
|
+
if (requires_sequence_to_maintain_binding(parent, orig, val)) {
|
13205
|
+
const zero = make_node(AST_Number, orig, { value: 0 });
|
13206
|
+
return make_sequence(orig, [ zero, val ]);
|
13207
|
+
} else {
|
13208
|
+
return val;
|
13209
|
+
}
|
13210
|
+
}
|
13211
|
+
|
13212
|
+
/** Detect (1, x.noThis)(), (0, eval)(), which need sequences */
|
13213
|
+
function requires_sequence_to_maintain_binding(parent, orig, val) {
|
13214
|
+
return (
|
13121
13215
|
parent instanceof AST_UnaryPrefix && parent.operator == "delete"
|
13122
13216
|
|| parent instanceof AST_Call && parent.expression === orig
|
13123
13217
|
&& (
|
@@ -13125,12 +13219,7 @@ function maintain_this_binding(parent, orig, val) {
|
|
13125
13219
|
|| val instanceof AST_PropAccess
|
13126
13220
|
|| val instanceof AST_SymbolRef && val.name == "eval"
|
13127
13221
|
)
|
13128
|
-
)
|
13129
|
-
const zero = make_node(AST_Number, orig, { value: 0 });
|
13130
|
-
return make_sequence(orig, [ zero, val ]);
|
13131
|
-
} else {
|
13132
|
-
return val;
|
13133
|
-
}
|
13222
|
+
);
|
13134
13223
|
}
|
13135
13224
|
|
13136
13225
|
function is_func_expr(node) {
|
@@ -13219,9 +13308,9 @@ function is_reachable(scope_node, defs) {
|
|
13219
13308
|
}
|
13220
13309
|
|
13221
13310
|
/** Check if a ref refers to the name of a function/class it's defined within */
|
13222
|
-
function is_recursive_ref(
|
13311
|
+
function is_recursive_ref(tw, def) {
|
13223
13312
|
var node;
|
13224
|
-
for (var i = 0; node =
|
13313
|
+
for (var i = 0; node = tw.parent(i); i++) {
|
13225
13314
|
if (node instanceof AST_Lambda || node instanceof AST_Class) {
|
13226
13315
|
var name = node.name;
|
13227
13316
|
if (name && name.definition() === def) {
|
@@ -13787,7 +13876,7 @@ function is_nullish(node, compressor) {
|
|
13787
13876
|
return any(this.definitions, compressor);
|
13788
13877
|
});
|
13789
13878
|
def_has_side_effects(AST_VarDef, function() {
|
13790
|
-
return this.value;
|
13879
|
+
return this.value != null;
|
13791
13880
|
});
|
13792
13881
|
def_has_side_effects(AST_TemplateSegment, return_false);
|
13793
13882
|
def_has_side_effects(AST_TemplateString, function(compressor) {
|
@@ -14346,6 +14435,54 @@ function is_modified(compressor, tw, node, value, level, immutable) {
|
|
14346
14435
|
}
|
14347
14436
|
}
|
14348
14437
|
|
14438
|
+
/**
|
14439
|
+
* Check if a node may be used by the expression it's in
|
14440
|
+
* void (0, 1, {node}, 2) -> false
|
14441
|
+
* console.log(0, {node}) -> true
|
14442
|
+
*/
|
14443
|
+
function is_used_in_expression(tw) {
|
14444
|
+
for (let p = -1, node, parent; node = tw.parent(p), parent = tw.parent(p + 1); p++) {
|
14445
|
+
if (parent instanceof AST_Sequence) {
|
14446
|
+
const nth_expression = parent.expressions.indexOf(node);
|
14447
|
+
if (nth_expression !== parent.expressions.length - 1) {
|
14448
|
+
// Detect (0, x.noThis)() constructs
|
14449
|
+
const grandparent = tw.parent(p + 2);
|
14450
|
+
if (
|
14451
|
+
parent.expressions.length > 2
|
14452
|
+
|| parent.expressions.length === 1
|
14453
|
+
|| !requires_sequence_to_maintain_binding(grandparent, parent, parent.expressions[1])
|
14454
|
+
) {
|
14455
|
+
return false;
|
14456
|
+
}
|
14457
|
+
return true;
|
14458
|
+
} else {
|
14459
|
+
continue;
|
14460
|
+
}
|
14461
|
+
}
|
14462
|
+
if (parent instanceof AST_Unary) {
|
14463
|
+
const op = parent.operator;
|
14464
|
+
if (op === "void") {
|
14465
|
+
return false;
|
14466
|
+
}
|
14467
|
+
if (op === "typeof" || op === "+" || op === "-" || op === "!" || op === "~") {
|
14468
|
+
continue;
|
14469
|
+
}
|
14470
|
+
}
|
14471
|
+
if (
|
14472
|
+
parent instanceof AST_SimpleStatement
|
14473
|
+
|| parent instanceof AST_LabeledStatement
|
14474
|
+
) {
|
14475
|
+
return false;
|
14476
|
+
}
|
14477
|
+
if (parent instanceof AST_Scope) {
|
14478
|
+
return false;
|
14479
|
+
}
|
14480
|
+
return true;
|
14481
|
+
}
|
14482
|
+
|
14483
|
+
return true;
|
14484
|
+
}
|
14485
|
+
|
14349
14486
|
/***********************************************************************
|
14350
14487
|
|
14351
14488
|
A JavaScript tokenizer / parser / beautifier / compressor.
|
@@ -14530,14 +14667,25 @@ def_eval(AST_Object, function (compressor, depth) {
|
|
14530
14667
|
var non_converting_unary = makePredicate("! typeof void");
|
14531
14668
|
def_eval(AST_UnaryPrefix, function (compressor, depth) {
|
14532
14669
|
var e = this.expression;
|
14533
|
-
// Function would be evaluated to an array and so typeof would
|
14534
|
-
// incorrectly return 'object'. Hence making is a special case.
|
14535
14670
|
if (compressor.option("typeofs")
|
14536
|
-
&& this.operator == "typeof"
|
14537
|
-
|
14671
|
+
&& this.operator == "typeof") {
|
14672
|
+
// Function would be evaluated to an array and so typeof would
|
14673
|
+
// incorrectly return 'object'. Hence making is a special case.
|
14674
|
+
if (e instanceof AST_Lambda
|
14538
14675
|
|| e instanceof AST_SymbolRef
|
14539
|
-
&& e.fixed_value() instanceof AST_Lambda)
|
14540
|
-
|
14676
|
+
&& e.fixed_value() instanceof AST_Lambda) {
|
14677
|
+
return typeof function () { };
|
14678
|
+
}
|
14679
|
+
if (
|
14680
|
+
(e instanceof AST_Object
|
14681
|
+
|| e instanceof AST_Array
|
14682
|
+
|| (e instanceof AST_SymbolRef
|
14683
|
+
&& (e.fixed_value() instanceof AST_Object
|
14684
|
+
|| e.fixed_value() instanceof AST_Array)))
|
14685
|
+
&& !e.has_side_effects(compressor)
|
14686
|
+
) {
|
14687
|
+
return typeof {};
|
14688
|
+
}
|
14541
14689
|
}
|
14542
14690
|
if (!non_converting_unary.has(this.operator))
|
14543
14691
|
depth++;
|
@@ -15225,7 +15373,6 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15225
15373
|
}
|
15226
15374
|
var var_defs_by_id = new Map();
|
15227
15375
|
var initializations = new Map();
|
15228
|
-
var self_referential_classes = new Set();
|
15229
15376
|
|
15230
15377
|
// pass 1: find out which symbols are directly used in
|
15231
15378
|
// this scope (not in nested scopes).
|
@@ -15240,8 +15387,11 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15240
15387
|
}
|
15241
15388
|
if (node === self) return;
|
15242
15389
|
if (node instanceof AST_Class && node.has_side_effects(compressor)) {
|
15243
|
-
if (node.is_self_referential())
|
15244
|
-
|
15390
|
+
if (node.is_self_referential()) {
|
15391
|
+
descend();
|
15392
|
+
} else {
|
15393
|
+
node.visit_nondeferred_class_parts(tw);
|
15394
|
+
}
|
15245
15395
|
}
|
15246
15396
|
if (node instanceof AST_Defun || node instanceof AST_DefClass) {
|
15247
15397
|
var node_def = node.name.definition();
|
@@ -15305,9 +15455,6 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15305
15455
|
init.walk(tw);
|
15306
15456
|
});
|
15307
15457
|
});
|
15308
|
-
self_referential_classes.forEach(function (cls) {
|
15309
|
-
cls.walk(tw);
|
15310
|
-
});
|
15311
15458
|
// pass 3: we should drop declarations not in_use
|
15312
15459
|
var tt = new TreeTransformer(
|
15313
15460
|
function before(node, descend, in_list) {
|
@@ -15319,7 +15466,11 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15319
15466
|
var in_use = in_use_ids.has(def.id);
|
15320
15467
|
if (node instanceof AST_Assign) {
|
15321
15468
|
if (!in_use || fixed_ids.has(def.id) && fixed_ids.get(def.id) !== node) {
|
15322
|
-
|
15469
|
+
const assignee = node.right.transform(tt);
|
15470
|
+
if (!in_use && !assignee.has_side_effects(compressor) && !is_used_in_expression(tt)) {
|
15471
|
+
return in_list ? MAP.skip : make_node(AST_Number, node, { value: 0 });
|
15472
|
+
}
|
15473
|
+
return maintain_this_binding(parent, node, assignee);
|
15323
15474
|
}
|
15324
15475
|
} else if (!in_use) {
|
15325
15476
|
return in_list ? MAP.skip : make_node(AST_Number, node, { value: 0 });
|
@@ -15339,7 +15490,13 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15339
15490
|
if (!in_use_ids.has(def.id) || def.orig.length > 1) node.name = null;
|
15340
15491
|
}
|
15341
15492
|
if (node instanceof AST_Lambda && !(node instanceof AST_Accessor)) {
|
15342
|
-
var trim =
|
15493
|
+
var trim =
|
15494
|
+
!compressor.option("keep_fargs")
|
15495
|
+
// Is this an IIFE that won't refer to its name?
|
15496
|
+
|| parent instanceof AST_Call
|
15497
|
+
&& parent.expression === node
|
15498
|
+
&& !node.pinned()
|
15499
|
+
&& (!node.name || node.name.unreferenced());
|
15343
15500
|
for (var a = node.argnames, i = a.length; --i >= 0;) {
|
15344
15501
|
var sym = a[i];
|
15345
15502
|
if (sym instanceof AST_Expansion) {
|
@@ -15526,6 +15683,14 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15526
15683
|
scope = save_scope;
|
15527
15684
|
return node;
|
15528
15685
|
}
|
15686
|
+
},
|
15687
|
+
function after(node, in_list) {
|
15688
|
+
if (node instanceof AST_Sequence) {
|
15689
|
+
switch (node.expressions.length) {
|
15690
|
+
case 0: return in_list ? MAP.skip : make_node(AST_Number, node, { value: 0 });
|
15691
|
+
case 1: return node.expressions[0];
|
15692
|
+
}
|
15693
|
+
}
|
15529
15694
|
}
|
15530
15695
|
);
|
15531
15696
|
|
@@ -16008,28 +16173,50 @@ function mark_lambda(tw, descend, compressor) {
|
|
16008
16173
|
* // use defined_after
|
16009
16174
|
* }
|
16010
16175
|
*
|
16011
|
-
*
|
16176
|
+
* Or even indirectly:
|
16177
|
+
*
|
16178
|
+
* B();
|
16179
|
+
* var defined_after = true;
|
16180
|
+
* function A() {
|
16181
|
+
* // use defined_after
|
16182
|
+
* }
|
16183
|
+
* function B() {
|
16184
|
+
* A();
|
16185
|
+
* }
|
16186
|
+
*
|
16187
|
+
* Access a variable before declaration will either throw a ReferenceError
|
16188
|
+
* (if the variable is declared with `let` or `const`),
|
16189
|
+
* or get an `undefined` (if the variable is declared with `var`).
|
16190
|
+
*
|
16191
|
+
* If the variable is inlined into the function, the behavior will change.
|
16192
|
+
*
|
16193
|
+
* This function is called on the parent to disallow inlining of such variables,
|
16012
16194
|
*/
|
16013
16195
|
function handle_defined_after_hoist(parent) {
|
16014
16196
|
const defuns = [];
|
16015
16197
|
walk(parent, node => {
|
16016
16198
|
if (node === parent) return;
|
16017
|
-
if (node instanceof AST_Defun)
|
16199
|
+
if (node instanceof AST_Defun) {
|
16200
|
+
defuns.push(node);
|
16201
|
+
return true;
|
16202
|
+
}
|
16018
16203
|
if (
|
16019
16204
|
node instanceof AST_Scope
|
16020
16205
|
|| node instanceof AST_SimpleStatement
|
16021
16206
|
) return true;
|
16022
16207
|
});
|
16023
16208
|
|
16209
|
+
// `defun` id to array of `defun` it uses
|
16210
|
+
const defun_dependencies_map = new Map();
|
16211
|
+
// `defun` id to array of enclosing `def` that are used by the function
|
16212
|
+
const dependencies_map = new Map();
|
16213
|
+
// all symbol ids that will be tracked for read/write
|
16024
16214
|
const symbols_of_interest = new Set();
|
16025
16215
|
const defuns_of_interest = new Set();
|
16026
|
-
const potential_conflicts = [];
|
16027
16216
|
|
16028
16217
|
for (const defun of defuns) {
|
16029
16218
|
const fname_def = defun.name.definition();
|
16030
|
-
const
|
16031
|
-
d => d !== defun && d.enclosed.indexOf(fname_def) !== -1
|
16032
|
-
);
|
16219
|
+
const enclosing_defs = [];
|
16033
16220
|
|
16034
16221
|
for (const def of defun.enclosed) {
|
16035
16222
|
if (
|
@@ -16040,93 +16227,107 @@ function handle_defined_after_hoist(parent) {
|
|
16040
16227
|
continue;
|
16041
16228
|
}
|
16042
16229
|
|
16043
|
-
|
16230
|
+
symbols_of_interest.add(def.id);
|
16231
|
+
|
16232
|
+
// found a reference to another function
|
16044
16233
|
if (
|
16045
16234
|
def.assignments === 0
|
16046
16235
|
&& def.orig.length === 1
|
16047
16236
|
&& def.orig[0] instanceof AST_SymbolDefun
|
16048
16237
|
) {
|
16049
|
-
|
16050
|
-
|
16238
|
+
defuns_of_interest.add(def.id);
|
16239
|
+
symbols_of_interest.add(def.id);
|
16240
|
+
|
16241
|
+
defuns_of_interest.add(fname_def.id);
|
16242
|
+
symbols_of_interest.add(fname_def.id);
|
16243
|
+
|
16244
|
+
if (!defun_dependencies_map.has(fname_def.id)) {
|
16245
|
+
defun_dependencies_map.set(fname_def.id, []);
|
16246
|
+
}
|
16247
|
+
defun_dependencies_map.get(fname_def.id).push(def.id);
|
16051
16248
|
|
16052
|
-
if (found_self_ref_in_other_defuns) {
|
16053
|
-
def.fixed = false;
|
16054
16249
|
continue;
|
16055
16250
|
}
|
16056
16251
|
|
16057
|
-
|
16058
|
-
|
16059
|
-
|
16252
|
+
enclosing_defs.push(def);
|
16253
|
+
}
|
16254
|
+
|
16255
|
+
if (enclosing_defs.length) {
|
16256
|
+
dependencies_map.set(fname_def.id, enclosing_defs);
|
16257
|
+
defuns_of_interest.add(fname_def.id);
|
16060
16258
|
symbols_of_interest.add(fname_def.id);
|
16061
|
-
defuns_of_interest.add(defun);
|
16062
16259
|
}
|
16063
16260
|
}
|
16064
16261
|
|
16065
|
-
//
|
16066
|
-
if (
|
16067
|
-
|
16068
|
-
|
16069
|
-
const found_symbols = [];
|
16070
|
-
// Indices of `found_symbols` which are writes
|
16071
|
-
const found_symbol_writes = new Set();
|
16072
|
-
// Defun ranges are recorded because we don't care if a function uses the def internally
|
16073
|
-
const defun_ranges = new Map();
|
16262
|
+
// No defuns use outside constants
|
16263
|
+
if (!dependencies_map.size) {
|
16264
|
+
return;
|
16265
|
+
}
|
16074
16266
|
|
16075
|
-
|
16076
|
-
|
16077
|
-
|
16078
|
-
|
16079
|
-
|
16080
|
-
|
16267
|
+
// Increment to count "symbols of interest" (defuns or defs) that we found.
|
16268
|
+
// These are tracked in AST order so we can check which is after which.
|
16269
|
+
let symbol_index = 1;
|
16270
|
+
// Map a defun ID to its first read (a `symbol_index`)
|
16271
|
+
const defun_first_read_map = new Map();
|
16272
|
+
// Map a symbol ID to its last write (a `symbol_index`)
|
16273
|
+
const symbol_last_write_map = new Map();
|
16081
16274
|
|
16082
|
-
|
16083
|
-
|
16084
|
-
|
16085
|
-
// if we found a defun on the list, mark IN_DEFUN=id and descend
|
16275
|
+
walk_parent(parent, (node, walk_info) => {
|
16276
|
+
if (node instanceof AST_Symbol && node.thedef) {
|
16277
|
+
const id = node.definition().id;
|
16086
16278
|
|
16087
|
-
|
16088
|
-
|
16089
|
-
|
16090
|
-
|
16091
|
-
|
16092
|
-
|
16093
|
-
found_symbols.push(id);
|
16279
|
+
symbol_index++;
|
16280
|
+
|
16281
|
+
// Track last-writes to symbols
|
16282
|
+
if (symbols_of_interest.has(id)) {
|
16283
|
+
if (node instanceof AST_SymbolDeclaration || is_lhs(node, walk_info.parent())) {
|
16284
|
+
symbol_last_write_map.set(id, symbol_index);
|
16094
16285
|
}
|
16095
16286
|
}
|
16096
|
-
})));
|
16097
16287
|
|
16098
|
-
|
16099
|
-
|
16288
|
+
// Track first-reads of defuns (refined later)
|
16289
|
+
if (defuns_of_interest.has(id)) {
|
16290
|
+
if (!defun_first_read_map.has(id) && !is_recursive_ref(walk_info, id)) {
|
16291
|
+
defun_first_read_map.set(id, symbol_index);
|
16292
|
+
}
|
16293
|
+
}
|
16294
|
+
}
|
16295
|
+
});
|
16100
16296
|
|
16101
|
-
|
16102
|
-
|
16103
|
-
|
16297
|
+
// Refine `defun_first_read_map` to be as high as possible
|
16298
|
+
for (const [defun, defun_first_read] of defun_first_read_map) {
|
16299
|
+
// Update all depdencies of `defun`
|
16300
|
+
const queue = new Set(defun_dependencies_map.get(defun));
|
16301
|
+
for (const enclosed_defun of queue) {
|
16302
|
+
let enclosed_defun_first_read = defun_first_read_map.get(enclosed_defun);
|
16303
|
+
if (enclosed_defun_first_read != null && enclosed_defun_first_read < defun_first_read) {
|
16304
|
+
continue;
|
16305
|
+
}
|
16104
16306
|
|
16105
|
-
|
16106
|
-
index = found_symbols.indexOf(sym_id, index);
|
16307
|
+
defun_first_read_map.set(enclosed_defun, defun_first_read);
|
16107
16308
|
|
16108
|
-
|
16109
|
-
|
16110
|
-
|
16111
|
-
|
16112
|
-
|
16113
|
-
} else if (must_be_write && !found_symbol_writes.has(index)) {
|
16114
|
-
index++;
|
16115
|
-
continue;
|
16116
|
-
} else {
|
16117
|
-
break;
|
16118
|
-
}
|
16119
|
-
}
|
16309
|
+
for (const enclosed_enclosed_defun of defun_dependencies_map.get(enclosed_defun) || []) {
|
16310
|
+
queue.add(enclosed_enclosed_defun);
|
16311
|
+
}
|
16312
|
+
}
|
16313
|
+
}
|
16120
16314
|
|
16121
|
-
|
16122
|
-
|
16315
|
+
// ensure write-then-read order, otherwise clear `fixed`
|
16316
|
+
// This is safe because last-writes (found_symbol_writes) are assumed to be as late as possible, and first-reads (defun_first_read_map) are assumed to be as early as possible.
|
16317
|
+
for (const [defun, defs] of dependencies_map) {
|
16318
|
+
const defun_first_read = defun_first_read_map.get(defun);
|
16319
|
+
if (defun_first_read === undefined) {
|
16320
|
+
continue;
|
16321
|
+
}
|
16123
16322
|
|
16124
|
-
|
16125
|
-
|
16323
|
+
for (const def of defs) {
|
16324
|
+
if (def.fixed === false) {
|
16325
|
+
continue;
|
16326
|
+
}
|
16126
16327
|
|
16127
|
-
|
16328
|
+
let def_last_write = symbol_last_write_map.get(def.id) || 0;
|
16128
16329
|
|
16129
|
-
if (
|
16330
|
+
if (defun_first_read < def_last_write) {
|
16130
16331
|
def.fixed = false;
|
16131
16332
|
}
|
16132
16333
|
}
|
@@ -18760,9 +18961,8 @@ def_optimize(AST_Node, function(self) {
|
|
18760
18961
|
});
|
18761
18962
|
|
18762
18963
|
AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
18763
|
-
|
18764
|
-
|
18765
|
-
return this.transform(new TreeTransformer(function(self) {
|
18964
|
+
const isArray = Array.isArray(options);
|
18965
|
+
const tt = new TreeTransformer(function(self) {
|
18766
18966
|
if (self.TYPE !== "Call") {
|
18767
18967
|
return;
|
18768
18968
|
}
|
@@ -18773,18 +18973,35 @@ AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
|
18773
18973
|
return;
|
18774
18974
|
}
|
18775
18975
|
|
18776
|
-
if (isArray && options.
|
18976
|
+
if (isArray && !options.includes(exp.property)) {
|
18777
18977
|
return;
|
18778
18978
|
}
|
18779
18979
|
|
18780
18980
|
var name = exp.expression;
|
18981
|
+
var depth = 2;
|
18781
18982
|
while (name.expression) {
|
18782
18983
|
name = name.expression;
|
18984
|
+
depth++;
|
18783
18985
|
}
|
18986
|
+
|
18784
18987
|
if (is_undeclared_ref(name) && name.name == "console") {
|
18785
|
-
|
18988
|
+
if (
|
18989
|
+
depth === 3
|
18990
|
+
&& !["call", "apply"].includes(exp.property)
|
18991
|
+
&& is_used_in_expression(tt)
|
18992
|
+
) {
|
18993
|
+
// a (used) call to Function.prototype methods (eg: console.log.bind(console))
|
18994
|
+
// but not .call and .apply which would also return undefined.
|
18995
|
+
exp.expression = make_empty_function(self);
|
18996
|
+
set_flag(exp.expression, SQUEEZED);
|
18997
|
+
self.args = [];
|
18998
|
+
} else {
|
18999
|
+
return make_node(AST_Undefined, self);
|
19000
|
+
}
|
18786
19001
|
}
|
18787
|
-
})
|
19002
|
+
});
|
19003
|
+
|
19004
|
+
return this.transform(tt);
|
18788
19005
|
});
|
18789
19006
|
|
18790
19007
|
AST_Node.DEFMETHOD("equivalent_to", function(node) {
|
@@ -19483,7 +19700,9 @@ def_optimize(AST_Switch, function(self, compressor) {
|
|
19483
19700
|
eliminate_branch(branch, body[body.length - 1]);
|
19484
19701
|
continue;
|
19485
19702
|
}
|
19486
|
-
if (exp instanceof AST_Node
|
19703
|
+
if (exp instanceof AST_Node && !exp.has_side_effects(compressor)) {
|
19704
|
+
exp = branch.expression.tail_node().evaluate(compressor);
|
19705
|
+
}
|
19487
19706
|
if (exp === value) {
|
19488
19707
|
exact_match = branch;
|
19489
19708
|
if (default_branch) {
|
@@ -19665,12 +19884,9 @@ def_optimize(AST_Switch, function(self, compressor) {
|
|
19665
19884
|
break DEFAULT;
|
19666
19885
|
}
|
19667
19886
|
|
19668
|
-
let sideEffect = body.find(
|
19669
|
-
|
19670
|
-
|
19671
|
-
&& branch.expression.has_side_effects(compressor)
|
19672
|
-
);
|
19673
|
-
});
|
19887
|
+
let sideEffect = body.find(
|
19888
|
+
branch => branch !== default_or_exact && branch.expression.has_side_effects(compressor)
|
19889
|
+
);
|
19674
19890
|
// If no cases cause a side-effect, we can eliminate the switch entirely.
|
19675
19891
|
if (!sideEffect) {
|
19676
19892
|
return make_node(AST_BlockStatement, self, {
|
@@ -19778,9 +19994,10 @@ def_optimize(AST_Switch, function(self, compressor) {
|
|
19778
19994
|
right: branch.expression,
|
19779
19995
|
}),
|
19780
19996
|
body: consequent,
|
19781
|
-
alternative: null
|
19782
|
-
})
|
19783
|
-
|
19997
|
+
alternative: null,
|
19998
|
+
}),
|
19999
|
+
always,
|
20000
|
+
],
|
19784
20001
|
}).optimize(compressor);
|
19785
20002
|
}
|
19786
20003
|
return self;
|
@@ -19803,13 +20020,12 @@ def_optimize(AST_Switch, function(self, compressor) {
|
|
19803
20020
|
let pblock = make_node(AST_BlockStatement, prev, { body: pbody });
|
19804
20021
|
return bblock.equivalent_to(pblock);
|
19805
20022
|
}
|
19806
|
-
function statement(
|
19807
|
-
return make_node(AST_SimpleStatement,
|
19808
|
-
body: expression
|
19809
|
-
});
|
20023
|
+
function statement(body) {
|
20024
|
+
return make_node(AST_SimpleStatement, body, { body });
|
19810
20025
|
}
|
19811
20026
|
function has_nested_break(root) {
|
19812
20027
|
let has_break = false;
|
20028
|
+
|
19813
20029
|
let tw = new TreeWalker(node => {
|
19814
20030
|
if (has_break) return true;
|
19815
20031
|
if (node instanceof AST_Lambda) return true;
|
@@ -20162,10 +20378,7 @@ def_optimize(AST_Call, function(self, compressor) {
|
|
20162
20378
|
&& is_undeclared_ref(exp)
|
20163
20379
|
&& exp.name == "Function") {
|
20164
20380
|
// new Function() => function(){}
|
20165
|
-
if (self.args.length == 0) return
|
20166
|
-
argnames: [],
|
20167
|
-
body: []
|
20168
|
-
}).optimize(compressor);
|
20381
|
+
if (self.args.length == 0) return make_empty_function(self).optimize(compressor);
|
20169
20382
|
if (self.args.every((x) => x instanceof AST_String)) {
|
20170
20383
|
// quite a corner-case, but we can handle it:
|
20171
20384
|
// https://github.com/mishoo/UglifyJS2/issues/203
|
@@ -21925,10 +22138,7 @@ def_optimize(AST_Dot, function(self, compressor) {
|
|
21925
22138
|
});
|
21926
22139
|
break;
|
21927
22140
|
case "Function":
|
21928
|
-
self.expression =
|
21929
|
-
argnames: [],
|
21930
|
-
body: []
|
21931
|
-
});
|
22141
|
+
self.expression = make_empty_function(self.expression);
|
21932
22142
|
break;
|
21933
22143
|
case "Number":
|
21934
22144
|
self.expression = make_node(AST_Number, self.expression, {
|
@@ -22008,7 +22218,7 @@ def_optimize(AST_Array, function(self, compressor) {
|
|
22008
22218
|
return self;
|
22009
22219
|
});
|
22010
22220
|
|
22011
|
-
function inline_object_prop_spread(props
|
22221
|
+
function inline_object_prop_spread(props) {
|
22012
22222
|
for (var i = 0; i < props.length; i++) {
|
22013
22223
|
var prop = props[i];
|
22014
22224
|
if (prop instanceof AST_Expansion) {
|
@@ -22020,15 +22230,14 @@ function inline_object_prop_spread(props, compressor) {
|
|
22020
22230
|
props.splice(i, 1, ...expr.properties);
|
22021
22231
|
// Step back one, as the property at i is now new.
|
22022
22232
|
i--;
|
22023
|
-
} else if (
|
22024
|
-
|
22233
|
+
} else if ((
|
22234
|
+
// `expr.is_constant()` returns `false` for `AST_RegExp`, so need both.
|
22235
|
+
expr instanceof AST_Constant
|
22236
|
+
|| expr.is_constant()
|
22237
|
+
) && !(expr instanceof AST_String)) {
|
22025
22238
|
// Unlike array-like spread, in object spread, spreading a
|
22026
22239
|
// non-iterable value silently does nothing; it is thus safe
|
22027
|
-
// to remove. AST_String is the only iterable
|
22028
|
-
props.splice(i, 1);
|
22029
|
-
i--;
|
22030
|
-
} else if (is_nullish(expr, compressor)) {
|
22031
|
-
// Likewise, null and undefined can be silently removed.
|
22240
|
+
// to remove. AST_String is the only iterable constant.
|
22032
22241
|
props.splice(i, 1);
|
22033
22242
|
i--;
|
22034
22243
|
}
|
@@ -22041,7 +22250,7 @@ def_optimize(AST_Object, function(self, compressor) {
|
|
22041
22250
|
if (optimized !== self) {
|
22042
22251
|
return optimized;
|
22043
22252
|
}
|
22044
|
-
inline_object_prop_spread(self.properties
|
22253
|
+
inline_object_prop_spread(self.properties);
|
22045
22254
|
return self;
|
22046
22255
|
});
|
22047
22256
|
|
@@ -22564,6 +22773,7 @@ var domprops = [
|
|
22564
22773
|
"-webkit-box-pack",
|
22565
22774
|
"-webkit-box-shadow",
|
22566
22775
|
"-webkit-box-sizing",
|
22776
|
+
"-webkit-clip-path",
|
22567
22777
|
"-webkit-filter",
|
22568
22778
|
"-webkit-flex",
|
22569
22779
|
"-webkit-flex-basis",
|
@@ -22588,6 +22798,7 @@ var domprops = [
|
|
22588
22798
|
"-webkit-perspective",
|
22589
22799
|
"-webkit-perspective-origin",
|
22590
22800
|
"-webkit-text-fill-color",
|
22801
|
+
"-webkit-text-security",
|
22591
22802
|
"-webkit-text-size-adjust",
|
22592
22803
|
"-webkit-text-stroke",
|
22593
22804
|
"-webkit-text-stroke-color",
|
@@ -22675,13 +22886,17 @@ var domprops = [
|
|
22675
22886
|
"AudioBuffer",
|
22676
22887
|
"AudioBufferSourceNode",
|
22677
22888
|
"AudioContext",
|
22889
|
+
"AudioData",
|
22890
|
+
"AudioDecoder",
|
22678
22891
|
"AudioDestinationNode",
|
22892
|
+
"AudioEncoder",
|
22679
22893
|
"AudioListener",
|
22680
22894
|
"AudioNode",
|
22681
22895
|
"AudioParam",
|
22682
22896
|
"AudioParamMap",
|
22683
22897
|
"AudioProcessingEvent",
|
22684
22898
|
"AudioScheduledSourceNode",
|
22899
|
+
"AudioSinkInfo",
|
22685
22900
|
"AudioStreamTrack",
|
22686
22901
|
"AudioWorklet",
|
22687
22902
|
"AudioWorkletNode",
|
@@ -22744,6 +22959,7 @@ var domprops = [
|
|
22744
22959
|
"BluetoothUUID",
|
22745
22960
|
"Boolean",
|
22746
22961
|
"BroadcastChannel",
|
22962
|
+
"BrowserCaptureMediaStreamTrack",
|
22747
22963
|
"ByteLengthQueuingStrategy",
|
22748
22964
|
"CAPTURING_PHASE",
|
22749
22965
|
"CCW",
|
@@ -22806,15 +23022,20 @@ var domprops = [
|
|
22806
23022
|
"CSSAnimation",
|
22807
23023
|
"CSSCharsetRule",
|
22808
23024
|
"CSSConditionRule",
|
23025
|
+
"CSSContainerRule",
|
22809
23026
|
"CSSCounterStyleRule",
|
22810
23027
|
"CSSFontFaceRule",
|
22811
23028
|
"CSSFontFeatureValuesRule",
|
23029
|
+
"CSSFontPaletteValuesRule",
|
22812
23030
|
"CSSGroupingRule",
|
22813
23031
|
"CSSImageValue",
|
22814
23032
|
"CSSImportRule",
|
22815
23033
|
"CSSKeyframeRule",
|
22816
23034
|
"CSSKeyframesRule",
|
22817
23035
|
"CSSKeywordValue",
|
23036
|
+
"CSSLayerBlockRule",
|
23037
|
+
"CSSLayerStatementRule",
|
23038
|
+
"CSSMathClamp",
|
22818
23039
|
"CSSMathInvert",
|
22819
23040
|
"CSSMathMax",
|
22820
23041
|
"CSSMathMin",
|
@@ -22833,13 +23054,16 @@ var domprops = [
|
|
22833
23054
|
"CSSPerspective",
|
22834
23055
|
"CSSPositionValue",
|
22835
23056
|
"CSSPrimitiveValue",
|
23057
|
+
"CSSPropertyRule",
|
22836
23058
|
"CSSRotate",
|
22837
23059
|
"CSSRule",
|
22838
23060
|
"CSSRuleList",
|
22839
23061
|
"CSSScale",
|
23062
|
+
"CSSScopeRule",
|
22840
23063
|
"CSSSkew",
|
22841
23064
|
"CSSSkewX",
|
22842
23065
|
"CSSSkewY",
|
23066
|
+
"CSSStartingStyleRule",
|
22843
23067
|
"CSSStyleDeclaration",
|
22844
23068
|
"CSSStyleRule",
|
22845
23069
|
"CSSStyleSheet",
|
@@ -22939,9 +23163,11 @@ var domprops = [
|
|
22939
23163
|
"CanvasGradient",
|
22940
23164
|
"CanvasPattern",
|
22941
23165
|
"CanvasRenderingContext2D",
|
23166
|
+
"CaptureController",
|
22942
23167
|
"CaretPosition",
|
22943
23168
|
"ChannelMergerNode",
|
22944
23169
|
"ChannelSplitterNode",
|
23170
|
+
"CharacterBoundsUpdateEvent",
|
22945
23171
|
"CharacterData",
|
22946
23172
|
"ClientRect",
|
22947
23173
|
"ClientRectList",
|
@@ -22957,16 +23183,22 @@ var domprops = [
|
|
22957
23183
|
"CompressionStream",
|
22958
23184
|
"Console",
|
22959
23185
|
"ConstantSourceNode",
|
23186
|
+
"ContentVisibilityAutoStateChangeEvent",
|
22960
23187
|
"Controllers",
|
22961
23188
|
"ConvolverNode",
|
23189
|
+
"CookieChangeEvent",
|
23190
|
+
"CookieStore",
|
23191
|
+
"CookieStoreManager",
|
22962
23192
|
"CountQueuingStrategy",
|
22963
23193
|
"Counter",
|
22964
23194
|
"Credential",
|
22965
23195
|
"CredentialsContainer",
|
23196
|
+
"CropTarget",
|
22966
23197
|
"Crypto",
|
22967
23198
|
"CryptoKey",
|
22968
23199
|
"CustomElementRegistry",
|
22969
23200
|
"CustomEvent",
|
23201
|
+
"CustomStateSet",
|
22970
23202
|
"DATABASE_ERR",
|
22971
23203
|
"DATA_CLONE_ERR",
|
22972
23204
|
"DATA_ERR",
|
@@ -23457,6 +23689,7 @@ var domprops = [
|
|
23457
23689
|
"DateTimeFormat",
|
23458
23690
|
"DecompressionStream",
|
23459
23691
|
"DelayNode",
|
23692
|
+
"DelegatedInkTrailPresenter",
|
23460
23693
|
"DeprecationReportBody",
|
23461
23694
|
"DesktopNotification",
|
23462
23695
|
"DesktopNotificationCenter",
|
@@ -23472,6 +23705,8 @@ var domprops = [
|
|
23472
23705
|
"DisplayNames",
|
23473
23706
|
"Document",
|
23474
23707
|
"DocumentFragment",
|
23708
|
+
"DocumentPictureInPicture",
|
23709
|
+
"DocumentPictureInPictureEvent",
|
23475
23710
|
"DocumentTimeline",
|
23476
23711
|
"DocumentType",
|
23477
23712
|
"DragEvent",
|
@@ -23492,9 +23727,12 @@ var domprops = [
|
|
23492
23727
|
"EQUALPOWER",
|
23493
23728
|
"ERROR",
|
23494
23729
|
"EXPONENTIAL_DISTANCE",
|
23730
|
+
"EditContext",
|
23495
23731
|
"Element",
|
23496
23732
|
"ElementInternals",
|
23497
23733
|
"ElementQuery",
|
23734
|
+
"EncodedAudioChunk",
|
23735
|
+
"EncodedVideoChunk",
|
23498
23736
|
"EnterPictureInPictureEvent",
|
23499
23737
|
"Entity",
|
23500
23738
|
"EntityReference",
|
@@ -23502,10 +23740,13 @@ var domprops = [
|
|
23502
23740
|
"ErrorEvent",
|
23503
23741
|
"EvalError",
|
23504
23742
|
"Event",
|
23743
|
+
"EventCounts",
|
23505
23744
|
"EventException",
|
23506
23745
|
"EventSource",
|
23507
23746
|
"EventTarget",
|
23747
|
+
"Exception",
|
23508
23748
|
"External",
|
23749
|
+
"EyeDropper",
|
23509
23750
|
"FASTEST",
|
23510
23751
|
"FIDOSDK",
|
23511
23752
|
"FILTER_ACCEPT",
|
@@ -23568,20 +23809,27 @@ var domprops = [
|
|
23568
23809
|
"FederatedCredential",
|
23569
23810
|
"Feed",
|
23570
23811
|
"FeedEntry",
|
23812
|
+
"Fence",
|
23813
|
+
"FencedFrameConfig",
|
23571
23814
|
"File",
|
23572
23815
|
"FileError",
|
23573
23816
|
"FileList",
|
23574
23817
|
"FileReader",
|
23575
23818
|
"FileSystem",
|
23576
23819
|
"FileSystemDirectoryEntry",
|
23820
|
+
"FileSystemDirectoryHandle",
|
23577
23821
|
"FileSystemDirectoryReader",
|
23578
23822
|
"FileSystemEntry",
|
23579
23823
|
"FileSystemFileEntry",
|
23824
|
+
"FileSystemFileHandle",
|
23825
|
+
"FileSystemHandle",
|
23826
|
+
"FileSystemWritableFileStream",
|
23580
23827
|
"FinalizationRegistry",
|
23581
23828
|
"FindInPage",
|
23582
23829
|
"Float32Array",
|
23583
23830
|
"Float64Array",
|
23584
23831
|
"FocusEvent",
|
23832
|
+
"FontData",
|
23585
23833
|
"FontFace",
|
23586
23834
|
"FontFaceSet",
|
23587
23835
|
"FontFaceSetLoadEvent",
|
@@ -23591,6 +23839,46 @@ var domprops = [
|
|
23591
23839
|
"Function",
|
23592
23840
|
"GENERATE_MIPMAP_HINT",
|
23593
23841
|
"GEQUAL",
|
23842
|
+
"GPU",
|
23843
|
+
"GPUAdapter",
|
23844
|
+
"GPUAdapterInfo",
|
23845
|
+
"GPUBindGroup",
|
23846
|
+
"GPUBindGroupLayout",
|
23847
|
+
"GPUBuffer",
|
23848
|
+
"GPUBufferUsage",
|
23849
|
+
"GPUCanvasContext",
|
23850
|
+
"GPUColorWrite",
|
23851
|
+
"GPUCommandBuffer",
|
23852
|
+
"GPUCommandEncoder",
|
23853
|
+
"GPUCompilationInfo",
|
23854
|
+
"GPUCompilationMessage",
|
23855
|
+
"GPUComputePassEncoder",
|
23856
|
+
"GPUComputePipeline",
|
23857
|
+
"GPUDevice",
|
23858
|
+
"GPUDeviceLostInfo",
|
23859
|
+
"GPUError",
|
23860
|
+
"GPUExternalTexture",
|
23861
|
+
"GPUInternalError",
|
23862
|
+
"GPUMapMode",
|
23863
|
+
"GPUOutOfMemoryError",
|
23864
|
+
"GPUPipelineError",
|
23865
|
+
"GPUPipelineLayout",
|
23866
|
+
"GPUQuerySet",
|
23867
|
+
"GPUQueue",
|
23868
|
+
"GPURenderBundle",
|
23869
|
+
"GPURenderBundleEncoder",
|
23870
|
+
"GPURenderPassEncoder",
|
23871
|
+
"GPURenderPipeline",
|
23872
|
+
"GPUSampler",
|
23873
|
+
"GPUShaderModule",
|
23874
|
+
"GPUShaderStage",
|
23875
|
+
"GPUSupportedFeatures",
|
23876
|
+
"GPUSupportedLimits",
|
23877
|
+
"GPUTexture",
|
23878
|
+
"GPUTextureUsage",
|
23879
|
+
"GPUTextureView",
|
23880
|
+
"GPUUncapturedErrorEvent",
|
23881
|
+
"GPUValidationError",
|
23594
23882
|
"GREATER",
|
23595
23883
|
"GREEN",
|
23596
23884
|
"GREEN_BITS",
|
@@ -23608,6 +23896,7 @@ var domprops = [
|
|
23608
23896
|
"GeolocationPositionError",
|
23609
23897
|
"GestureEvent",
|
23610
23898
|
"Global",
|
23899
|
+
"GravitySensor",
|
23611
23900
|
"Gyroscope",
|
23612
23901
|
"HALF_FLOAT",
|
23613
23902
|
"HAVE_CURRENT_DATA",
|
@@ -23616,7 +23905,11 @@ var domprops = [
|
|
23616
23905
|
"HAVE_METADATA",
|
23617
23906
|
"HAVE_NOTHING",
|
23618
23907
|
"HEADERS_RECEIVED",
|
23908
|
+
"HID",
|
23909
|
+
"HIDConnectionEvent",
|
23619
23910
|
"HIDDEN",
|
23911
|
+
"HIDDevice",
|
23912
|
+
"HIDInputReportEvent",
|
23620
23913
|
"HIERARCHY_REQUEST_ERR",
|
23621
23914
|
"HIGHPASS",
|
23622
23915
|
"HIGHSHELF",
|
@@ -23650,6 +23943,7 @@ var domprops = [
|
|
23650
23943
|
"HTMLDocument",
|
23651
23944
|
"HTMLElement",
|
23652
23945
|
"HTMLEmbedElement",
|
23946
|
+
"HTMLFencedFrameElement",
|
23653
23947
|
"HTMLFieldSetElement",
|
23654
23948
|
"HTMLFontElement",
|
23655
23949
|
"HTMLFormControlsCollection",
|
@@ -23713,6 +24007,8 @@ var domprops = [
|
|
23713
24007
|
"HTMLVideoElement",
|
23714
24008
|
"HashChangeEvent",
|
23715
24009
|
"Headers",
|
24010
|
+
"Highlight",
|
24011
|
+
"HighlightRegistry",
|
23716
24012
|
"History",
|
23717
24013
|
"Hz",
|
23718
24014
|
"ICE_CHECKING",
|
@@ -23772,13 +24068,21 @@ var domprops = [
|
|
23772
24068
|
"INVERSE_DISTANCE",
|
23773
24069
|
"INVERT",
|
23774
24070
|
"IceCandidate",
|
24071
|
+
"IdentityCredential",
|
24072
|
+
"IdentityCredentialError",
|
24073
|
+
"IdentityProvider",
|
23775
24074
|
"IdleDeadline",
|
24075
|
+
"IdleDetector",
|
23776
24076
|
"Image",
|
23777
24077
|
"ImageBitmap",
|
23778
24078
|
"ImageBitmapRenderingContext",
|
23779
24079
|
"ImageCapture",
|
23780
24080
|
"ImageData",
|
24081
|
+
"ImageDecoder",
|
24082
|
+
"ImageTrack",
|
24083
|
+
"ImageTrackList",
|
23781
24084
|
"Infinity",
|
24085
|
+
"Ink",
|
23782
24086
|
"InputDeviceCapabilities",
|
23783
24087
|
"InputDeviceInfo",
|
23784
24088
|
"InputEvent",
|
@@ -23797,6 +24101,7 @@ var domprops = [
|
|
23797
24101
|
"IsSearchProviderInstalled",
|
23798
24102
|
"Iterator",
|
23799
24103
|
"JSON",
|
24104
|
+
"JSTag",
|
23800
24105
|
"KEEP",
|
23801
24106
|
"KEYDOWN",
|
23802
24107
|
"KEYFRAMES_RULE",
|
@@ -23838,6 +24143,8 @@ var domprops = [
|
|
23838
24143
|
"LUMINANCE",
|
23839
24144
|
"LUMINANCE_ALPHA",
|
23840
24145
|
"LargestContentfulPaint",
|
24146
|
+
"LaunchParams",
|
24147
|
+
"LaunchQueue",
|
23841
24148
|
"LayoutShift",
|
23842
24149
|
"LayoutShiftAttribution",
|
23843
24150
|
"LinearAccelerationSensor",
|
@@ -23997,6 +24304,7 @@ var domprops = [
|
|
23997
24304
|
"MediaSession",
|
23998
24305
|
"MediaSettingsRange",
|
23999
24306
|
"MediaSource",
|
24307
|
+
"MediaSourceHandle",
|
24000
24308
|
"MediaStream",
|
24001
24309
|
"MediaStreamAudioDestinationNode",
|
24002
24310
|
"MediaStreamAudioSourceNode",
|
@@ -24004,6 +24312,9 @@ var domprops = [
|
|
24004
24312
|
"MediaStreamTrack",
|
24005
24313
|
"MediaStreamTrackAudioSourceNode",
|
24006
24314
|
"MediaStreamTrackEvent",
|
24315
|
+
"MediaStreamTrackGenerator",
|
24316
|
+
"MediaStreamTrackProcessor",
|
24317
|
+
"MediaStreamTrackVideoStats",
|
24007
24318
|
"Memory",
|
24008
24319
|
"MessageChannel",
|
24009
24320
|
"MessageEvent",
|
@@ -24147,14 +24458,26 @@ var domprops = [
|
|
24147
24458
|
"NUM_COMPRESSED_TEXTURE_FORMATS",
|
24148
24459
|
"NaN",
|
24149
24460
|
"NamedNodeMap",
|
24461
|
+
"NavigateEvent",
|
24462
|
+
"Navigation",
|
24463
|
+
"NavigationActivation",
|
24464
|
+
"NavigationCurrentEntryChangeEvent",
|
24465
|
+
"NavigationDestination",
|
24466
|
+
"NavigationHistoryEntry",
|
24150
24467
|
"NavigationPreloadManager",
|
24468
|
+
"NavigationTransition",
|
24151
24469
|
"Navigator",
|
24470
|
+
"NavigatorLogin",
|
24471
|
+
"NavigatorManagedData",
|
24472
|
+
"NavigatorUAData",
|
24152
24473
|
"NearbyLinks",
|
24153
24474
|
"NetworkInformation",
|
24154
24475
|
"Node",
|
24155
24476
|
"NodeFilter",
|
24156
24477
|
"NodeIterator",
|
24157
24478
|
"NodeList",
|
24479
|
+
"NotRestoredReasonDetails",
|
24480
|
+
"NotRestoredReasons",
|
24158
24481
|
"Notation",
|
24159
24482
|
"Notification",
|
24160
24483
|
"NotifyPaintEvent",
|
@@ -24176,6 +24499,7 @@ var domprops = [
|
|
24176
24499
|
"ORDERED_NODE_ITERATOR_TYPE",
|
24177
24500
|
"ORDERED_NODE_SNAPSHOT_TYPE",
|
24178
24501
|
"OTHER_ERROR",
|
24502
|
+
"OTPCredential",
|
24179
24503
|
"OUT_OF_MEMORY",
|
24180
24504
|
"Object",
|
24181
24505
|
"OfflineAudioCompletionEvent",
|
@@ -24234,6 +24558,8 @@ var domprops = [
|
|
24234
24558
|
"PREV_NO_DUPLICATE",
|
24235
24559
|
"PROCESSING_INSTRUCTION_NODE",
|
24236
24560
|
"PageChangeEvent",
|
24561
|
+
"PageRevealEvent",
|
24562
|
+
"PageSwapEvent",
|
24237
24563
|
"PageTransitionEvent",
|
24238
24564
|
"PaintRequest",
|
24239
24565
|
"PaintRequestList",
|
@@ -24251,6 +24577,7 @@ var domprops = [
|
|
24251
24577
|
"PerformanceElementTiming",
|
24252
24578
|
"PerformanceEntry",
|
24253
24579
|
"PerformanceEventTiming",
|
24580
|
+
"PerformanceLongAnimationFrameTiming",
|
24254
24581
|
"PerformanceLongTaskTiming",
|
24255
24582
|
"PerformanceMark",
|
24256
24583
|
"PerformanceMeasure",
|
@@ -24260,6 +24587,7 @@ var domprops = [
|
|
24260
24587
|
"PerformanceObserverEntryList",
|
24261
24588
|
"PerformancePaintTiming",
|
24262
24589
|
"PerformanceResourceTiming",
|
24590
|
+
"PerformanceScriptTiming",
|
24263
24591
|
"PerformanceServerTiming",
|
24264
24592
|
"PerformanceTiming",
|
24265
24593
|
"PeriodicSyncManager",
|
@@ -24267,6 +24595,7 @@ var domprops = [
|
|
24267
24595
|
"PermissionStatus",
|
24268
24596
|
"Permissions",
|
24269
24597
|
"PhotoCapabilities",
|
24598
|
+
"PictureInPictureEvent",
|
24270
24599
|
"PictureInPictureWindow",
|
24271
24600
|
"Plugin",
|
24272
24601
|
"PluginArray",
|
@@ -24283,6 +24612,7 @@ var domprops = [
|
|
24283
24612
|
"PresentationReceiver",
|
24284
24613
|
"PresentationRequest",
|
24285
24614
|
"ProcessingInstruction",
|
24615
|
+
"Profiler",
|
24286
24616
|
"ProgressEvent",
|
24287
24617
|
"Promise",
|
24288
24618
|
"PromiseRejectionEvent",
|
@@ -24395,6 +24725,8 @@ var domprops = [
|
|
24395
24725
|
"RTCDataChannel",
|
24396
24726
|
"RTCDataChannelEvent",
|
24397
24727
|
"RTCDtlsTransport",
|
24728
|
+
"RTCEncodedAudioFrame",
|
24729
|
+
"RTCEncodedVideoFrame",
|
24398
24730
|
"RTCError",
|
24399
24731
|
"RTCErrorEvent",
|
24400
24732
|
"RTCIceCandidate",
|
@@ -24403,6 +24735,7 @@ var domprops = [
|
|
24403
24735
|
"RTCPeerConnectionIceErrorEvent",
|
24404
24736
|
"RTCPeerConnectionIceEvent",
|
24405
24737
|
"RTCRtpReceiver",
|
24738
|
+
"RTCRtpScriptTransform",
|
24406
24739
|
"RTCRtpSender",
|
24407
24740
|
"RTCRtpTransceiver",
|
24408
24741
|
"RTCSctpTransport",
|
@@ -24413,7 +24746,11 @@ var domprops = [
|
|
24413
24746
|
"Range",
|
24414
24747
|
"RangeError",
|
24415
24748
|
"RangeException",
|
24749
|
+
"ReadableByteStreamController",
|
24416
24750
|
"ReadableStream",
|
24751
|
+
"ReadableStreamBYOBReader",
|
24752
|
+
"ReadableStreamBYOBRequest",
|
24753
|
+
"ReadableStreamDefaultController",
|
24417
24754
|
"ReadableStreamDefaultReader",
|
24418
24755
|
"RecordErrorEvent",
|
24419
24756
|
"Rect",
|
@@ -24726,6 +25063,7 @@ var domprops = [
|
|
24726
25063
|
"SVG_FECOMPOSITE_OPERATOR_ARITHMETIC",
|
24727
25064
|
"SVG_FECOMPOSITE_OPERATOR_ATOP",
|
24728
25065
|
"SVG_FECOMPOSITE_OPERATOR_IN",
|
25066
|
+
"SVG_FECOMPOSITE_OPERATOR_LIGHTER",
|
24729
25067
|
"SVG_FECOMPOSITE_OPERATOR_OUT",
|
24730
25068
|
"SVG_FECOMPOSITE_OPERATOR_OVER",
|
24731
25069
|
"SVG_FECOMPOSITE_OPERATOR_UNKNOWN",
|
@@ -24747,6 +25085,7 @@ var domprops = [
|
|
24747
25085
|
"SVG_MARKERUNITS_USERSPACEONUSE",
|
24748
25086
|
"SVG_MARKER_ORIENT_ANGLE",
|
24749
25087
|
"SVG_MARKER_ORIENT_AUTO",
|
25088
|
+
"SVG_MARKER_ORIENT_AUTO_START_REVERSE",
|
24750
25089
|
"SVG_MARKER_ORIENT_UNKNOWN",
|
24751
25090
|
"SVG_MASKTYPE_ALPHA",
|
24752
25091
|
"SVG_MASKTYPE_LUMINANCE",
|
@@ -24810,15 +25149,23 @@ var domprops = [
|
|
24810
25149
|
"SYNC_STATUS",
|
24811
25150
|
"SYNTAX_ERR",
|
24812
25151
|
"SavedPages",
|
25152
|
+
"Scheduler",
|
25153
|
+
"Scheduling",
|
24813
25154
|
"Screen",
|
25155
|
+
"ScreenDetailed",
|
25156
|
+
"ScreenDetails",
|
24814
25157
|
"ScreenOrientation",
|
24815
25158
|
"Script",
|
24816
25159
|
"ScriptProcessorNode",
|
24817
25160
|
"ScrollAreaEvent",
|
25161
|
+
"ScrollTimeline",
|
24818
25162
|
"SecurityPolicyViolationEvent",
|
25163
|
+
"Segmenter",
|
24819
25164
|
"Selection",
|
24820
25165
|
"Sensor",
|
24821
25166
|
"SensorErrorEvent",
|
25167
|
+
"Serial",
|
25168
|
+
"SerialPort",
|
24822
25169
|
"ServiceWorker",
|
24823
25170
|
"ServiceWorkerContainer",
|
24824
25171
|
"ServiceWorkerRegistration",
|
@@ -24826,6 +25173,8 @@ var domprops = [
|
|
24826
25173
|
"Set",
|
24827
25174
|
"ShadowRoot",
|
24828
25175
|
"SharedArrayBuffer",
|
25176
|
+
"SharedStorage",
|
25177
|
+
"SharedStorageWorklet",
|
24829
25178
|
"SharedWorker",
|
24830
25179
|
"SimpleGestureEvent",
|
24831
25180
|
"SourceBuffer",
|
@@ -24839,6 +25188,8 @@ var domprops = [
|
|
24839
25188
|
"StereoPannerNode",
|
24840
25189
|
"StopIteration",
|
24841
25190
|
"Storage",
|
25191
|
+
"StorageBucket",
|
25192
|
+
"StorageBucketManager",
|
24842
25193
|
"StorageEvent",
|
24843
25194
|
"StorageManager",
|
24844
25195
|
"String",
|
@@ -24950,25 +25301,34 @@ var domprops = [
|
|
24950
25301
|
"TYPE_RELOAD",
|
24951
25302
|
"TYPE_RESERVED",
|
24952
25303
|
"Table",
|
25304
|
+
"Tag",
|
24953
25305
|
"TaskAttributionTiming",
|
25306
|
+
"TaskController",
|
25307
|
+
"TaskPriorityChangeEvent",
|
25308
|
+
"TaskSignal",
|
24954
25309
|
"Text",
|
24955
25310
|
"TextDecoder",
|
24956
25311
|
"TextDecoderStream",
|
24957
25312
|
"TextEncoder",
|
24958
25313
|
"TextEncoderStream",
|
24959
25314
|
"TextEvent",
|
25315
|
+
"TextFormat",
|
25316
|
+
"TextFormatUpdateEvent",
|
24960
25317
|
"TextMetrics",
|
24961
25318
|
"TextTrack",
|
24962
25319
|
"TextTrackCue",
|
24963
25320
|
"TextTrackCueList",
|
24964
25321
|
"TextTrackList",
|
25322
|
+
"TextUpdateEvent",
|
24965
25323
|
"TimeEvent",
|
24966
25324
|
"TimeRanges",
|
25325
|
+
"ToggleEvent",
|
24967
25326
|
"Touch",
|
24968
25327
|
"TouchEvent",
|
24969
25328
|
"TouchList",
|
24970
25329
|
"TrackEvent",
|
24971
25330
|
"TransformStream",
|
25331
|
+
"TransformStreamDefaultController",
|
24972
25332
|
"TransitionEvent",
|
24973
25333
|
"TreeWalker",
|
24974
25334
|
"TrustedHTML",
|
@@ -25040,6 +25400,7 @@ var domprops = [
|
|
25040
25400
|
"UPDATEREADY",
|
25041
25401
|
"URIError",
|
25042
25402
|
"URL",
|
25403
|
+
"URLPattern",
|
25043
25404
|
"URLSearchParams",
|
25044
25405
|
"URLUnencoded",
|
25045
25406
|
"URL_MISMATCH_ERR",
|
@@ -25101,14 +25462,24 @@ var domprops = [
|
|
25101
25462
|
"VTTCue",
|
25102
25463
|
"VTTRegion",
|
25103
25464
|
"ValidityState",
|
25465
|
+
"VideoColorSpace",
|
25466
|
+
"VideoDecoder",
|
25467
|
+
"VideoEncoder",
|
25468
|
+
"VideoFrame",
|
25104
25469
|
"VideoPlaybackQuality",
|
25105
25470
|
"VideoStreamTrack",
|
25471
|
+
"ViewTimeline",
|
25472
|
+
"ViewTransition",
|
25473
|
+
"VirtualKeyboard",
|
25474
|
+
"VirtualKeyboardGeometryChangeEvent",
|
25475
|
+
"VisibilityStateEntry",
|
25106
25476
|
"VisualViewport",
|
25107
25477
|
"WAIT_FAILED",
|
25108
25478
|
"WEBKIT_FILTER_RULE",
|
25109
25479
|
"WEBKIT_KEYFRAMES_RULE",
|
25110
25480
|
"WEBKIT_KEYFRAME_RULE",
|
25111
25481
|
"WEBKIT_REGION_RULE",
|
25482
|
+
"WGSLLanguageFeatures",
|
25112
25483
|
"WRITE",
|
25113
25484
|
"WRONG_DOCUMENT_ERR",
|
25114
25485
|
"WakeLock",
|
@@ -25162,6 +25533,14 @@ var domprops = [
|
|
25162
25533
|
"WebKitSourceBufferList",
|
25163
25534
|
"WebKitTransitionEvent",
|
25164
25535
|
"WebSocket",
|
25536
|
+
"WebSocketError",
|
25537
|
+
"WebSocketStream",
|
25538
|
+
"WebTransport",
|
25539
|
+
"WebTransportBidirectionalStream",
|
25540
|
+
"WebTransportDatagramDuplexStream",
|
25541
|
+
"WebTransportError",
|
25542
|
+
"WebTransportReceiveStream",
|
25543
|
+
"WebTransportSendStream",
|
25165
25544
|
"WebkitAlignContent",
|
25166
25545
|
"WebkitAlignItems",
|
25167
25546
|
"WebkitAlignSelf",
|
@@ -25193,6 +25572,7 @@ var domprops = [
|
|
25193
25572
|
"WebkitBoxPack",
|
25194
25573
|
"WebkitBoxShadow",
|
25195
25574
|
"WebkitBoxSizing",
|
25575
|
+
"WebkitClipPath",
|
25196
25576
|
"WebkitFilter",
|
25197
25577
|
"WebkitFlex",
|
25198
25578
|
"WebkitFlexBasis",
|
@@ -25217,6 +25597,7 @@ var domprops = [
|
|
25217
25597
|
"WebkitPerspective",
|
25218
25598
|
"WebkitPerspectiveOrigin",
|
25219
25599
|
"WebkitTextFillColor",
|
25600
|
+
"WebkitTextSecurity",
|
25220
25601
|
"WebkitTextSizeAdjust",
|
25221
25602
|
"WebkitTextStroke",
|
25222
25603
|
"WebkitTextStrokeColor",
|
@@ -25232,9 +25613,12 @@ var domprops = [
|
|
25232
25613
|
"WebkitUserSelect",
|
25233
25614
|
"WheelEvent",
|
25234
25615
|
"Window",
|
25616
|
+
"WindowControlsOverlay",
|
25617
|
+
"WindowControlsOverlayGeometryChangeEvent",
|
25235
25618
|
"Worker",
|
25236
25619
|
"Worklet",
|
25237
25620
|
"WritableStream",
|
25621
|
+
"WritableStreamDefaultController",
|
25238
25622
|
"WritableStreamDefaultWriter",
|
25239
25623
|
"XMLDocument",
|
25240
25624
|
"XMLHttpRequest",
|
@@ -25249,8 +25633,13 @@ var domprops = [
|
|
25249
25633
|
"XPathExpression",
|
25250
25634
|
"XPathNSResolver",
|
25251
25635
|
"XPathResult",
|
25636
|
+
"XRAnchor",
|
25637
|
+
"XRAnchorSet",
|
25252
25638
|
"XRBoundedReferenceSpace",
|
25639
|
+
"XRCPUDepthInformation",
|
25640
|
+
"XRCamera",
|
25253
25641
|
"XRDOMOverlayState",
|
25642
|
+
"XRDepthInformation",
|
25254
25643
|
"XRFrame",
|
25255
25644
|
"XRHitTestResult",
|
25256
25645
|
"XRHitTestSource",
|
@@ -25259,6 +25648,8 @@ var domprops = [
|
|
25259
25648
|
"XRInputSourceEvent",
|
25260
25649
|
"XRInputSourcesChangeEvent",
|
25261
25650
|
"XRLayer",
|
25651
|
+
"XRLightEstimate",
|
25652
|
+
"XRLightProbe",
|
25262
25653
|
"XRPose",
|
25263
25654
|
"XRRay",
|
25264
25655
|
"XRReferenceSpace",
|
@@ -25274,11 +25665,14 @@ var domprops = [
|
|
25274
25665
|
"XRView",
|
25275
25666
|
"XRViewerPose",
|
25276
25667
|
"XRViewport",
|
25668
|
+
"XRWebGLBinding",
|
25669
|
+
"XRWebGLDepthInformation",
|
25277
25670
|
"XRWebGLLayer",
|
25278
25671
|
"XSLTProcessor",
|
25279
25672
|
"ZERO",
|
25280
25673
|
"_XD0M_",
|
25281
25674
|
"_YD0M_",
|
25675
|
+
"__REACT_DEVTOOLS_GLOBAL_HOOK__",
|
25282
25676
|
"__brand",
|
25283
25677
|
"__defineGetter__",
|
25284
25678
|
"__defineSetter__",
|
@@ -25297,6 +25691,8 @@ var domprops = [
|
|
25297
25691
|
"acceleration",
|
25298
25692
|
"accelerationIncludingGravity",
|
25299
25693
|
"accelerator",
|
25694
|
+
"accent-color",
|
25695
|
+
"accentColor",
|
25300
25696
|
"accept",
|
25301
25697
|
"acceptCharset",
|
25302
25698
|
"acceptNode",
|
@@ -25310,6 +25706,8 @@ var domprops = [
|
|
25310
25706
|
"actionURL",
|
25311
25707
|
"actions",
|
25312
25708
|
"activated",
|
25709
|
+
"activation",
|
25710
|
+
"activationStart",
|
25313
25711
|
"active",
|
25314
25712
|
"activeCues",
|
25315
25713
|
"activeElement",
|
@@ -25321,6 +25719,8 @@ var domprops = [
|
|
25321
25719
|
"actualBoundingBoxDescent",
|
25322
25720
|
"actualBoundingBoxLeft",
|
25323
25721
|
"actualBoundingBoxRight",
|
25722
|
+
"adAuctionComponents",
|
25723
|
+
"adAuctionHeaders",
|
25324
25724
|
"add",
|
25325
25725
|
"addAll",
|
25326
25726
|
"addBehavior",
|
@@ -25361,6 +25761,7 @@ var domprops = [
|
|
25361
25761
|
"addressModeV",
|
25362
25762
|
"addressModeW",
|
25363
25763
|
"adoptNode",
|
25764
|
+
"adoptedCallback",
|
25364
25765
|
"adoptedStyleSheets",
|
25365
25766
|
"adr",
|
25366
25767
|
"advance",
|
@@ -25379,6 +25780,7 @@ var domprops = [
|
|
25379
25780
|
"alinkColor",
|
25380
25781
|
"all",
|
25381
25782
|
"allSettled",
|
25783
|
+
"allocationSize",
|
25382
25784
|
"allow",
|
25383
25785
|
"allowFullscreen",
|
25384
25786
|
"allowPaymentRequest",
|
@@ -25389,6 +25791,7 @@ var domprops = [
|
|
25389
25791
|
"alpha",
|
25390
25792
|
"alphaMode",
|
25391
25793
|
"alphaToCoverageEnabled",
|
25794
|
+
"alphabeticBaseline",
|
25392
25795
|
"alt",
|
25393
25796
|
"altGraphKey",
|
25394
25797
|
"altHtml",
|
@@ -25399,11 +25802,13 @@ var domprops = [
|
|
25399
25802
|
"alternates",
|
25400
25803
|
"altitude",
|
25401
25804
|
"altitudeAccuracy",
|
25805
|
+
"altitudeAngle",
|
25402
25806
|
"amplitude",
|
25403
25807
|
"ancestorOrigins",
|
25404
25808
|
"anchor",
|
25405
25809
|
"anchorNode",
|
25406
25810
|
"anchorOffset",
|
25811
|
+
"anchorSpace",
|
25407
25812
|
"anchors",
|
25408
25813
|
"and",
|
25409
25814
|
"angle",
|
@@ -25411,11 +25816,13 @@ var domprops = [
|
|
25411
25816
|
"angularVelocity",
|
25412
25817
|
"animVal",
|
25413
25818
|
"animate",
|
25819
|
+
"animated",
|
25414
25820
|
"animatedInstanceRoot",
|
25415
25821
|
"animatedNormalizedPathSegList",
|
25416
25822
|
"animatedPathSegList",
|
25417
25823
|
"animatedPoints",
|
25418
25824
|
"animation",
|
25825
|
+
"animation-composition",
|
25419
25826
|
"animation-delay",
|
25420
25827
|
"animation-direction",
|
25421
25828
|
"animation-duration",
|
@@ -25424,6 +25831,7 @@ var domprops = [
|
|
25424
25831
|
"animation-name",
|
25425
25832
|
"animation-play-state",
|
25426
25833
|
"animation-timing-function",
|
25834
|
+
"animationComposition",
|
25427
25835
|
"animationDelay",
|
25428
25836
|
"animationDirection",
|
25429
25837
|
"animationDuration",
|
@@ -25470,10 +25878,13 @@ var domprops = [
|
|
25470
25878
|
"arguments",
|
25471
25879
|
"ariaAtomic",
|
25472
25880
|
"ariaAutoComplete",
|
25881
|
+
"ariaBrailleLabel",
|
25882
|
+
"ariaBrailleRoleDescription",
|
25473
25883
|
"ariaBusy",
|
25474
25884
|
"ariaChecked",
|
25475
25885
|
"ariaColCount",
|
25476
25886
|
"ariaColIndex",
|
25887
|
+
"ariaColIndexText",
|
25477
25888
|
"ariaColSpan",
|
25478
25889
|
"ariaCurrent",
|
25479
25890
|
"ariaDescription",
|
@@ -25481,6 +25892,7 @@ var domprops = [
|
|
25481
25892
|
"ariaExpanded",
|
25482
25893
|
"ariaHasPopup",
|
25483
25894
|
"ariaHidden",
|
25895
|
+
"ariaInvalid",
|
25484
25896
|
"ariaKeyShortcuts",
|
25485
25897
|
"ariaLabel",
|
25486
25898
|
"ariaLevel",
|
@@ -25498,6 +25910,7 @@ var domprops = [
|
|
25498
25910
|
"ariaRoleDescription",
|
25499
25911
|
"ariaRowCount",
|
25500
25912
|
"ariaRowIndex",
|
25913
|
+
"ariaRowIndexText",
|
25501
25914
|
"ariaRowSpan",
|
25502
25915
|
"ariaSelected",
|
25503
25916
|
"ariaSetSize",
|
@@ -25514,9 +25927,12 @@ var domprops = [
|
|
25514
25927
|
"as",
|
25515
25928
|
"asIntN",
|
25516
25929
|
"asUintN",
|
25930
|
+
"ascentOverride",
|
25517
25931
|
"asin",
|
25518
25932
|
"asinh",
|
25519
25933
|
"aspect",
|
25934
|
+
"aspect-ratio",
|
25935
|
+
"aspectRatio",
|
25520
25936
|
"assert",
|
25521
25937
|
"assign",
|
25522
25938
|
"assignedElements",
|
@@ -25524,6 +25940,7 @@ var domprops = [
|
|
25524
25940
|
"assignedSlot",
|
25525
25941
|
"async",
|
25526
25942
|
"asyncIterator",
|
25943
|
+
"at",
|
25527
25944
|
"atEnd",
|
25528
25945
|
"atan",
|
25529
25946
|
"atan2",
|
@@ -25533,11 +25950,13 @@ var domprops = [
|
|
25533
25950
|
"attachInternals",
|
25534
25951
|
"attachShader",
|
25535
25952
|
"attachShadow",
|
25953
|
+
"attachedElements",
|
25536
25954
|
"attachments",
|
25537
25955
|
"attack",
|
25538
25956
|
"attestationObject",
|
25539
25957
|
"attrChange",
|
25540
25958
|
"attrName",
|
25959
|
+
"attributeChangedCallback",
|
25541
25960
|
"attributeFilter",
|
25542
25961
|
"attributeName",
|
25543
25962
|
"attributeNamespace",
|
@@ -25545,10 +25964,13 @@ var domprops = [
|
|
25545
25964
|
"attributeStyleMap",
|
25546
25965
|
"attributes",
|
25547
25966
|
"attribution",
|
25967
|
+
"attributionSrc",
|
25968
|
+
"audioBitrateMode",
|
25548
25969
|
"audioBitsPerSecond",
|
25549
25970
|
"audioTracks",
|
25550
25971
|
"audioWorklet",
|
25551
25972
|
"authenticatedSignedWrites",
|
25973
|
+
"authenticatorAttachment",
|
25552
25974
|
"authenticatorData",
|
25553
25975
|
"autoIncrement",
|
25554
25976
|
"autobuffer",
|
@@ -25570,8 +25992,12 @@ var domprops = [
|
|
25570
25992
|
"axis",
|
25571
25993
|
"ay",
|
25572
25994
|
"azimuth",
|
25995
|
+
"azimuthAngle",
|
25573
25996
|
"b",
|
25574
25997
|
"back",
|
25998
|
+
"backdrop-filter",
|
25999
|
+
"backdropFilter",
|
26000
|
+
"backends",
|
25575
26001
|
"backface-visibility",
|
25576
26002
|
"backfaceVisibility",
|
25577
26003
|
"background",
|
@@ -25609,9 +26035,12 @@ var domprops = [
|
|
25609
26035
|
"baseMipLevel",
|
25610
26036
|
"baseNode",
|
25611
26037
|
"baseOffset",
|
26038
|
+
"basePalette",
|
25612
26039
|
"baseURI",
|
25613
26040
|
"baseVal",
|
26041
|
+
"baseline-source",
|
25614
26042
|
"baselineShift",
|
26043
|
+
"baselineSource",
|
25615
26044
|
"battery",
|
25616
26045
|
"bday",
|
25617
26046
|
"before",
|
@@ -25664,6 +26093,8 @@ var domprops = [
|
|
25664
26093
|
"blockDirection",
|
25665
26094
|
"blockSize",
|
25666
26095
|
"blockedURI",
|
26096
|
+
"blocking",
|
26097
|
+
"blockingDuration",
|
25667
26098
|
"blue",
|
25668
26099
|
"bluetooth",
|
25669
26100
|
"blur",
|
@@ -25803,6 +26234,7 @@ var domprops = [
|
|
25803
26234
|
"boundingClientRect",
|
25804
26235
|
"boundingHeight",
|
25805
26236
|
"boundingLeft",
|
26237
|
+
"boundingRect",
|
25806
26238
|
"boundingTop",
|
25807
26239
|
"boundingWidth",
|
25808
26240
|
"bounds",
|
@@ -25823,6 +26255,7 @@ var domprops = [
|
|
25823
26255
|
"breakInside",
|
25824
26256
|
"broadcast",
|
25825
26257
|
"browserLanguage",
|
26258
|
+
"browsingTopics",
|
25826
26259
|
"btoa",
|
25827
26260
|
"bubbles",
|
25828
26261
|
"buffer",
|
@@ -25839,6 +26272,7 @@ var domprops = [
|
|
25839
26272
|
"button",
|
25840
26273
|
"buttonID",
|
25841
26274
|
"buttons",
|
26275
|
+
"byobRequest",
|
25842
26276
|
"byteLength",
|
25843
26277
|
"byteOffset",
|
25844
26278
|
"bytesPerRow",
|
@@ -25848,15 +26282,25 @@ var domprops = [
|
|
25848
26282
|
"caches",
|
25849
26283
|
"call",
|
25850
26284
|
"caller",
|
26285
|
+
"camera",
|
25851
26286
|
"canBeFormatted",
|
25852
26287
|
"canBeMounted",
|
25853
26288
|
"canBeShared",
|
26289
|
+
"canConstructInDedicatedWorker",
|
26290
|
+
"canGoBack",
|
26291
|
+
"canGoForward",
|
25854
26292
|
"canHaveChildren",
|
25855
26293
|
"canHaveHTML",
|
25856
26294
|
"canInsertDTMF",
|
26295
|
+
"canIntercept",
|
26296
|
+
"canLoadAdAuctionFencedFrame",
|
26297
|
+
"canLoadOpaqueURL",
|
25857
26298
|
"canMakePayment",
|
26299
|
+
"canParse",
|
25858
26300
|
"canPlayType",
|
25859
26301
|
"canPresent",
|
26302
|
+
"canShare",
|
26303
|
+
"canTransition",
|
25860
26304
|
"canTrickleIceCandidates",
|
25861
26305
|
"cancel",
|
25862
26306
|
"cancelAndHoldAtTime",
|
@@ -25870,6 +26314,7 @@ var domprops = [
|
|
25870
26314
|
"candidate",
|
25871
26315
|
"canonicalUUID",
|
25872
26316
|
"canvas",
|
26317
|
+
"cap",
|
25873
26318
|
"capabilities",
|
25874
26319
|
"caption",
|
25875
26320
|
"caption-side",
|
@@ -25898,6 +26343,7 @@ var domprops = [
|
|
25898
26343
|
"chain",
|
25899
26344
|
"challenge",
|
25900
26345
|
"changeType",
|
26346
|
+
"changed",
|
25901
26347
|
"changedTouches",
|
25902
26348
|
"channel",
|
25903
26349
|
"channelCount",
|
@@ -25909,6 +26355,8 @@ var domprops = [
|
|
25909
26355
|
"charCodeAt",
|
25910
26356
|
"charIndex",
|
25911
26357
|
"charLength",
|
26358
|
+
"characterBounds",
|
26359
|
+
"characterBoundsRangeStart",
|
25912
26360
|
"characterData",
|
25913
26361
|
"characterDataOldValue",
|
25914
26362
|
"characterSet",
|
@@ -25917,10 +26365,12 @@ var domprops = [
|
|
25917
26365
|
"chargingTime",
|
25918
26366
|
"charset",
|
25919
26367
|
"check",
|
26368
|
+
"checkDCE",
|
25920
26369
|
"checkEnclosure",
|
25921
26370
|
"checkFramebufferStatus",
|
25922
26371
|
"checkIntersection",
|
25923
26372
|
"checkValidity",
|
26373
|
+
"checkVisibility",
|
25924
26374
|
"checked",
|
25925
26375
|
"childElementCount",
|
25926
26376
|
"childList",
|
@@ -25953,6 +26403,7 @@ var domprops = [
|
|
25953
26403
|
"clearMarks",
|
25954
26404
|
"clearMaxGCPauseAccumulator",
|
25955
26405
|
"clearMeasures",
|
26406
|
+
"clearOriginJoinedAdInterestGroups",
|
25956
26407
|
"clearParameters",
|
25957
26408
|
"clearRect",
|
25958
26409
|
"clearResourceTimings",
|
@@ -25986,11 +26437,13 @@ var domprops = [
|
|
25986
26437
|
"clipTop",
|
25987
26438
|
"clipboard",
|
25988
26439
|
"clipboardData",
|
26440
|
+
"clonable",
|
25989
26441
|
"clone",
|
25990
26442
|
"cloneContents",
|
25991
26443
|
"cloneNode",
|
25992
26444
|
"cloneRange",
|
25993
26445
|
"close",
|
26446
|
+
"closeCode",
|
25994
26447
|
"closePath",
|
25995
26448
|
"closed",
|
25996
26449
|
"closest",
|
@@ -26002,17 +26455,22 @@ var domprops = [
|
|
26002
26455
|
"codeBase",
|
26003
26456
|
"codePointAt",
|
26004
26457
|
"codeType",
|
26458
|
+
"codedHeight",
|
26459
|
+
"codedRect",
|
26460
|
+
"codedWidth",
|
26005
26461
|
"colSpan",
|
26006
26462
|
"collapse",
|
26007
26463
|
"collapseToEnd",
|
26008
26464
|
"collapseToStart",
|
26009
26465
|
"collapsed",
|
26010
26466
|
"collect",
|
26467
|
+
"collections",
|
26011
26468
|
"colno",
|
26012
26469
|
"color",
|
26013
26470
|
"color-adjust",
|
26014
26471
|
"color-interpolation",
|
26015
26472
|
"color-interpolation-filters",
|
26473
|
+
"color-scheme",
|
26016
26474
|
"colorAdjust",
|
26017
26475
|
"colorAttachments",
|
26018
26476
|
"colorDepth",
|
@@ -26020,6 +26478,7 @@ var domprops = [
|
|
26020
26478
|
"colorInterpolation",
|
26021
26479
|
"colorInterpolationFilters",
|
26022
26480
|
"colorMask",
|
26481
|
+
"colorScheme",
|
26023
26482
|
"colorSpace",
|
26024
26483
|
"colorType",
|
26025
26484
|
"cols",
|
@@ -26062,6 +26521,7 @@ var domprops = [
|
|
26062
26521
|
"compileShader",
|
26063
26522
|
"compileStreaming",
|
26064
26523
|
"complete",
|
26524
|
+
"completed",
|
26065
26525
|
"component",
|
26066
26526
|
"componentFromPoint",
|
26067
26527
|
"composed",
|
@@ -26080,6 +26540,7 @@ var domprops = [
|
|
26080
26540
|
"coneInnerAngle",
|
26081
26541
|
"coneOuterAngle",
|
26082
26542
|
"coneOuterGain",
|
26543
|
+
"config",
|
26083
26544
|
"configurable",
|
26084
26545
|
"configuration",
|
26085
26546
|
"configurationName",
|
@@ -26090,11 +26551,13 @@ var domprops = [
|
|
26090
26551
|
"confirmComposition",
|
26091
26552
|
"confirmSiteSpecificTrackingException",
|
26092
26553
|
"confirmWebWideTrackingException",
|
26554
|
+
"congestionControl",
|
26093
26555
|
"connect",
|
26094
26556
|
"connectEnd",
|
26095
26557
|
"connectShark",
|
26096
26558
|
"connectStart",
|
26097
26559
|
"connected",
|
26560
|
+
"connectedCallback",
|
26098
26561
|
"connection",
|
26099
26562
|
"connectionList",
|
26100
26563
|
"connectionSpeed",
|
@@ -26109,13 +26572,28 @@ var domprops = [
|
|
26109
26572
|
"constructor",
|
26110
26573
|
"contactID",
|
26111
26574
|
"contain",
|
26575
|
+
"contain-intrinsic-block-size",
|
26576
|
+
"contain-intrinsic-height",
|
26577
|
+
"contain-intrinsic-inline-size",
|
26578
|
+
"contain-intrinsic-size",
|
26579
|
+
"contain-intrinsic-width",
|
26580
|
+
"containIntrinsicBlockSize",
|
26581
|
+
"containIntrinsicHeight",
|
26582
|
+
"containIntrinsicInlineSize",
|
26583
|
+
"containIntrinsicSize",
|
26584
|
+
"containIntrinsicWidth",
|
26585
|
+
"container",
|
26586
|
+
"container-name",
|
26587
|
+
"container-type",
|
26112
26588
|
"containerId",
|
26113
26589
|
"containerName",
|
26590
|
+
"containerQuery",
|
26114
26591
|
"containerSrc",
|
26115
26592
|
"containerType",
|
26116
26593
|
"contains",
|
26117
26594
|
"containsNode",
|
26118
26595
|
"content",
|
26596
|
+
"content-visibility",
|
26119
26597
|
"contentBoxSize",
|
26120
26598
|
"contentDocument",
|
26121
26599
|
"contentEditable",
|
@@ -26125,6 +26603,7 @@ var domprops = [
|
|
26125
26603
|
"contentScriptType",
|
26126
26604
|
"contentStyleType",
|
26127
26605
|
"contentType",
|
26606
|
+
"contentVisibility",
|
26128
26607
|
"contentWindow",
|
26129
26608
|
"context",
|
26130
26609
|
"contextMenu",
|
@@ -26145,6 +26624,8 @@ var domprops = [
|
|
26145
26624
|
"convertToSpecifiedUnits",
|
26146
26625
|
"cookie",
|
26147
26626
|
"cookieEnabled",
|
26627
|
+
"cookieStore",
|
26628
|
+
"cookies",
|
26148
26629
|
"coords",
|
26149
26630
|
"copyBufferSubData",
|
26150
26631
|
"copyBufferToBuffer",
|
@@ -26156,6 +26637,7 @@ var domprops = [
|
|
26156
26637
|
"copyTexSubImage3D",
|
26157
26638
|
"copyTextureToBuffer",
|
26158
26639
|
"copyTextureToTexture",
|
26640
|
+
"copyTo",
|
26159
26641
|
"copyToChannel",
|
26160
26642
|
"copyWithin",
|
26161
26643
|
"correspondingElement",
|
@@ -26174,11 +26656,20 @@ var domprops = [
|
|
26174
26656
|
"country",
|
26175
26657
|
"cpuClass",
|
26176
26658
|
"cpuSleepAllowed",
|
26659
|
+
"cqb",
|
26660
|
+
"cqh",
|
26661
|
+
"cqi",
|
26662
|
+
"cqmax",
|
26663
|
+
"cqmin",
|
26664
|
+
"cqw",
|
26177
26665
|
"create",
|
26178
26666
|
"createAnalyser",
|
26667
|
+
"createAnchor",
|
26179
26668
|
"createAnswer",
|
26180
26669
|
"createAttribute",
|
26181
26670
|
"createAttributeNS",
|
26671
|
+
"createAuctionNonce",
|
26672
|
+
"createBidirectionalStream",
|
26182
26673
|
"createBindGroup",
|
26183
26674
|
"createBindGroupLayout",
|
26184
26675
|
"createBiquadFilter",
|
@@ -26193,6 +26684,7 @@ var domprops = [
|
|
26193
26684
|
"createComment",
|
26194
26685
|
"createComputePipeline",
|
26195
26686
|
"createComputePipelineAsync",
|
26687
|
+
"createConicGradient",
|
26196
26688
|
"createConstantSource",
|
26197
26689
|
"createContextualFragment",
|
26198
26690
|
"createControlRange",
|
@@ -26207,6 +26699,7 @@ var domprops = [
|
|
26207
26699
|
"createDynamicsCompressor",
|
26208
26700
|
"createElement",
|
26209
26701
|
"createElementNS",
|
26702
|
+
"createEncodedStreams",
|
26210
26703
|
"createEntityReference",
|
26211
26704
|
"createEvent",
|
26212
26705
|
"createEventObject",
|
@@ -26294,6 +26787,7 @@ var domprops = [
|
|
26294
26787
|
"createTBody",
|
26295
26788
|
"createTFoot",
|
26296
26789
|
"createTHead",
|
26790
|
+
"createTask",
|
26297
26791
|
"createTextNode",
|
26298
26792
|
"createTextRange",
|
26299
26793
|
"createTexture",
|
@@ -26301,11 +26795,16 @@ var domprops = [
|
|
26301
26795
|
"createTouchList",
|
26302
26796
|
"createTransformFeedback",
|
26303
26797
|
"createTreeWalker",
|
26798
|
+
"createUnidirectionalStream",
|
26304
26799
|
"createVertexArray",
|
26305
26800
|
"createView",
|
26306
26801
|
"createWaveShaper",
|
26802
|
+
"createWritable",
|
26307
26803
|
"creationTime",
|
26804
|
+
"credentialless",
|
26308
26805
|
"credentials",
|
26806
|
+
"criticalCHRestart",
|
26807
|
+
"cropTo",
|
26309
26808
|
"crossOrigin",
|
26310
26809
|
"crossOriginIsolated",
|
26311
26810
|
"crypto",
|
@@ -26321,12 +26820,14 @@ var domprops = [
|
|
26321
26820
|
"cullFace",
|
26322
26821
|
"cullMode",
|
26323
26822
|
"currentDirection",
|
26823
|
+
"currentEntry",
|
26324
26824
|
"currentLocalDescription",
|
26325
26825
|
"currentNode",
|
26326
26826
|
"currentPage",
|
26327
26827
|
"currentRect",
|
26328
26828
|
"currentRemoteDescription",
|
26329
26829
|
"currentScale",
|
26830
|
+
"currentScreen",
|
26330
26831
|
"currentScript",
|
26331
26832
|
"currentSrc",
|
26332
26833
|
"currentState",
|
@@ -26352,6 +26853,7 @@ var domprops = [
|
|
26352
26853
|
"dataTransfer",
|
26353
26854
|
"database",
|
26354
26855
|
"databases",
|
26856
|
+
"datagrams",
|
26355
26857
|
"dataset",
|
26356
26858
|
"dateTime",
|
26357
26859
|
"db",
|
@@ -26360,6 +26862,7 @@ var domprops = [
|
|
26360
26862
|
"declare",
|
26361
26863
|
"decode",
|
26362
26864
|
"decodeAudioData",
|
26865
|
+
"decodeQueueSize",
|
26363
26866
|
"decodeURI",
|
26364
26867
|
"decodeURIComponent",
|
26365
26868
|
"decodedBodySize",
|
@@ -26417,22 +26920,29 @@ var domprops = [
|
|
26417
26920
|
"deleteTexture",
|
26418
26921
|
"deleteTransformFeedback",
|
26419
26922
|
"deleteVertexArray",
|
26923
|
+
"deleted",
|
26420
26924
|
"deliverChangeRecords",
|
26925
|
+
"deliveredFrames",
|
26421
26926
|
"delivery",
|
26422
26927
|
"deliveryInfo",
|
26423
26928
|
"deliveryStatus",
|
26424
26929
|
"deliveryTimestamp",
|
26930
|
+
"deliveryType",
|
26425
26931
|
"delta",
|
26426
26932
|
"deltaMode",
|
26427
26933
|
"deltaX",
|
26428
26934
|
"deltaY",
|
26429
26935
|
"deltaZ",
|
26430
26936
|
"dependentLocality",
|
26937
|
+
"deprecatedReplaceInURN",
|
26938
|
+
"deprecatedRunAdAuctionEnforcesKAnonymity",
|
26939
|
+
"deprecatedURNToURL",
|
26431
26940
|
"depthBias",
|
26432
26941
|
"depthBiasClamp",
|
26433
26942
|
"depthBiasSlopeScale",
|
26434
26943
|
"depthClearValue",
|
26435
26944
|
"depthCompare",
|
26945
|
+
"depthDataFormat",
|
26436
26946
|
"depthFailOp",
|
26437
26947
|
"depthFar",
|
26438
26948
|
"depthFunc",
|
@@ -26446,10 +26956,12 @@ var domprops = [
|
|
26446
26956
|
"depthStencilAttachment",
|
26447
26957
|
"depthStencilFormat",
|
26448
26958
|
"depthStoreOp",
|
26959
|
+
"depthUsage",
|
26449
26960
|
"depthWriteEnabled",
|
26450
26961
|
"deref",
|
26451
26962
|
"deriveBits",
|
26452
26963
|
"deriveKey",
|
26964
|
+
"descentOverride",
|
26453
26965
|
"description",
|
26454
26966
|
"deselectAll",
|
26455
26967
|
"designMode",
|
@@ -26460,6 +26972,7 @@ var domprops = [
|
|
26460
26972
|
"detach",
|
26461
26973
|
"detachEvent",
|
26462
26974
|
"detachShader",
|
26975
|
+
"detached",
|
26463
26976
|
"detail",
|
26464
26977
|
"details",
|
26465
26978
|
"detect",
|
@@ -26478,6 +26991,7 @@ var domprops = [
|
|
26478
26991
|
"deviceXDPI",
|
26479
26992
|
"deviceYDPI",
|
26480
26993
|
"didTimeout",
|
26994
|
+
"difference",
|
26481
26995
|
"diffuseConstant",
|
26482
26996
|
"digest",
|
26483
26997
|
"dimension",
|
@@ -26491,15 +27005,19 @@ var domprops = [
|
|
26491
27005
|
"disableRemotePlayback",
|
26492
27006
|
"disableVertexAttribArray",
|
26493
27007
|
"disabled",
|
27008
|
+
"discardedFrames",
|
26494
27009
|
"dischargingTime",
|
26495
27010
|
"disconnect",
|
26496
27011
|
"disconnectShark",
|
27012
|
+
"disconnectedCallback",
|
26497
27013
|
"dispatchEvent",
|
26498
27014
|
"dispatchWorkgroups",
|
26499
27015
|
"dispatchWorkgroupsIndirect",
|
26500
27016
|
"display",
|
27017
|
+
"displayHeight",
|
26501
27018
|
"displayId",
|
26502
27019
|
"displayName",
|
27020
|
+
"displayWidth",
|
26503
27021
|
"disposition",
|
26504
27022
|
"distanceModel",
|
26505
27023
|
"div",
|
@@ -26513,6 +27031,7 @@ var domprops = [
|
|
26513
27031
|
"document",
|
26514
27032
|
"documentElement",
|
26515
27033
|
"documentMode",
|
27034
|
+
"documentPictureInPicture",
|
26516
27035
|
"documentURI",
|
26517
27036
|
"dolphin",
|
26518
27037
|
"dolphinGameCenter",
|
@@ -26535,6 +27054,7 @@ var domprops = [
|
|
26535
27054
|
"downDegrees",
|
26536
27055
|
"downlink",
|
26537
27056
|
"download",
|
27057
|
+
"downloadRequest",
|
26538
27058
|
"downloadTotal",
|
26539
27059
|
"downloaded",
|
26540
27060
|
"dpcm",
|
@@ -26559,8 +27079,12 @@ var domprops = [
|
|
26559
27079
|
"drawIndirect",
|
26560
27080
|
"drawRangeElements",
|
26561
27081
|
"drawSystemFocusRing",
|
27082
|
+
"drawingBufferColorSpace",
|
27083
|
+
"drawingBufferFormat",
|
26562
27084
|
"drawingBufferHeight",
|
27085
|
+
"drawingBufferStorage",
|
26563
27086
|
"drawingBufferWidth",
|
27087
|
+
"drop",
|
26564
27088
|
"dropEffect",
|
26565
27089
|
"droppedVideoFrames",
|
26566
27090
|
"dropzone",
|
@@ -26571,13 +27095,20 @@ var domprops = [
|
|
26571
27095
|
"duplicate",
|
26572
27096
|
"durability",
|
26573
27097
|
"duration",
|
27098
|
+
"dvb",
|
27099
|
+
"dvh",
|
27100
|
+
"dvi",
|
27101
|
+
"dvmax",
|
27102
|
+
"dvmin",
|
26574
27103
|
"dvname",
|
26575
27104
|
"dvnum",
|
27105
|
+
"dvw",
|
26576
27106
|
"dx",
|
26577
27107
|
"dy",
|
26578
27108
|
"dynsrc",
|
26579
27109
|
"e",
|
26580
27110
|
"edgeMode",
|
27111
|
+
"editContext",
|
26581
27112
|
"effect",
|
26582
27113
|
"effectAllowed",
|
26583
27114
|
"effectiveDirective",
|
@@ -26591,8 +27122,11 @@ var domprops = [
|
|
26591
27122
|
"elevation",
|
26592
27123
|
"ellipse",
|
26593
27124
|
"em",
|
27125
|
+
"emHeightAscent",
|
27126
|
+
"emHeightDescent",
|
26594
27127
|
"email",
|
26595
27128
|
"embeds",
|
27129
|
+
"emit",
|
26596
27130
|
"emma",
|
26597
27131
|
"empty",
|
26598
27132
|
"empty-cells",
|
@@ -26606,9 +27140,11 @@ var domprops = [
|
|
26606
27140
|
"enableStyleSheetsForSet",
|
26607
27141
|
"enableVertexAttribArray",
|
26608
27142
|
"enabled",
|
27143
|
+
"enabledFeatures",
|
26609
27144
|
"enabledPlugin",
|
26610
27145
|
"encode",
|
26611
27146
|
"encodeInto",
|
27147
|
+
"encodeQueueSize",
|
26612
27148
|
"encodeURI",
|
26613
27149
|
"encodeURIComponent",
|
26614
27150
|
"encodedBodySize",
|
@@ -26632,9 +27168,11 @@ var domprops = [
|
|
26632
27168
|
"endpointNumber",
|
26633
27169
|
"endpoints",
|
26634
27170
|
"endsWith",
|
27171
|
+
"enqueue",
|
26635
27172
|
"enterKeyHint",
|
26636
27173
|
"entities",
|
26637
27174
|
"entries",
|
27175
|
+
"entry",
|
26638
27176
|
"entryPoint",
|
26639
27177
|
"entryType",
|
26640
27178
|
"enumerable",
|
@@ -26652,6 +27190,7 @@ var domprops = [
|
|
26652
27190
|
"eval",
|
26653
27191
|
"evaluate",
|
26654
27192
|
"event",
|
27193
|
+
"eventCounts",
|
26655
27194
|
"eventPhase",
|
26656
27195
|
"every",
|
26657
27196
|
"ex",
|
@@ -26662,6 +27201,7 @@ var domprops = [
|
|
26662
27201
|
"execCommandShowHelp",
|
26663
27202
|
"execScript",
|
26664
27203
|
"executeBundles",
|
27204
|
+
"executionStart",
|
26665
27205
|
"exitFullscreen",
|
26666
27206
|
"exitPictureInPicture",
|
26667
27207
|
"exitPointerLock",
|
@@ -26671,6 +27211,7 @@ var domprops = [
|
|
26671
27211
|
"expandEntityReferences",
|
26672
27212
|
"expando",
|
26673
27213
|
"expansion",
|
27214
|
+
"expectedImprovement",
|
26674
27215
|
"expiration",
|
26675
27216
|
"expirationTime",
|
26676
27217
|
"expires",
|
@@ -26706,8 +27247,10 @@ var domprops = [
|
|
26706
27247
|
"featurePolicy",
|
26707
27248
|
"featureSettings",
|
26708
27249
|
"features",
|
27250
|
+
"fence",
|
26709
27251
|
"fenceSync",
|
26710
27252
|
"fetch",
|
27253
|
+
"fetchPriority",
|
26711
27254
|
"fetchStart",
|
26712
27255
|
"fftSize",
|
26713
27256
|
"fgColor",
|
@@ -26739,6 +27282,8 @@ var domprops = [
|
|
26739
27282
|
"finally",
|
26740
27283
|
"find",
|
26741
27284
|
"findIndex",
|
27285
|
+
"findLast",
|
27286
|
+
"findLastIndex",
|
26742
27287
|
"findRule",
|
26743
27288
|
"findText",
|
26744
27289
|
"finish",
|
@@ -26747,7 +27292,9 @@ var domprops = [
|
|
26747
27292
|
"firesTouchEvents",
|
26748
27293
|
"firstChild",
|
26749
27294
|
"firstElementChild",
|
27295
|
+
"firstInterimResponseStart",
|
26750
27296
|
"firstPage",
|
27297
|
+
"firstUIEventTimestamp",
|
26751
27298
|
"fixed",
|
26752
27299
|
"flags",
|
26753
27300
|
"flat",
|
@@ -26785,11 +27332,16 @@ var domprops = [
|
|
26785
27332
|
"font-kerning",
|
26786
27333
|
"font-language-override",
|
26787
27334
|
"font-optical-sizing",
|
27335
|
+
"font-palette",
|
26788
27336
|
"font-size",
|
26789
27337
|
"font-size-adjust",
|
26790
27338
|
"font-stretch",
|
26791
27339
|
"font-style",
|
26792
27340
|
"font-synthesis",
|
27341
|
+
"font-synthesis-position",
|
27342
|
+
"font-synthesis-small-caps",
|
27343
|
+
"font-synthesis-style",
|
27344
|
+
"font-synthesis-weight",
|
26793
27345
|
"font-variant",
|
26794
27346
|
"font-variant-alternates",
|
26795
27347
|
"font-variant-caps",
|
@@ -26799,17 +27351,24 @@ var domprops = [
|
|
26799
27351
|
"font-variant-position",
|
26800
27352
|
"font-variation-settings",
|
26801
27353
|
"font-weight",
|
27354
|
+
"fontBoundingBoxAscent",
|
27355
|
+
"fontBoundingBoxDescent",
|
26802
27356
|
"fontFamily",
|
26803
27357
|
"fontFeatureSettings",
|
26804
27358
|
"fontKerning",
|
26805
27359
|
"fontLanguageOverride",
|
26806
27360
|
"fontOpticalSizing",
|
27361
|
+
"fontPalette",
|
26807
27362
|
"fontSize",
|
26808
27363
|
"fontSizeAdjust",
|
26809
27364
|
"fontSmoothingEnabled",
|
26810
27365
|
"fontStretch",
|
26811
27366
|
"fontStyle",
|
26812
27367
|
"fontSynthesis",
|
27368
|
+
"fontSynthesisPosition",
|
27369
|
+
"fontSynthesisSmallCaps",
|
27370
|
+
"fontSynthesisStyle",
|
27371
|
+
"fontSynthesisWeight",
|
26813
27372
|
"fontVariant",
|
26814
27373
|
"fontVariantAlternates",
|
26815
27374
|
"fontVariantCaps",
|
@@ -26828,6 +27387,10 @@ var domprops = [
|
|
26828
27387
|
"force",
|
26829
27388
|
"forceFallbackAdapter",
|
26830
27389
|
"forceRedraw",
|
27390
|
+
"forced-color-adjust",
|
27391
|
+
"forcedColorAdjust",
|
27392
|
+
"forcedStyleAndLayoutDuration",
|
27393
|
+
"forget",
|
26831
27394
|
"form",
|
26832
27395
|
"formAction",
|
26833
27396
|
"formData",
|
@@ -26848,6 +27411,7 @@ var domprops = [
|
|
26848
27411
|
"fragmentDirective",
|
26849
27412
|
"frame",
|
26850
27413
|
"frameBorder",
|
27414
|
+
"frameCount",
|
26851
27415
|
"frameElement",
|
26852
27416
|
"frameSpacing",
|
26853
27417
|
"framebuffer",
|
@@ -26862,6 +27426,7 @@ var domprops = [
|
|
26862
27426
|
"frequency",
|
26863
27427
|
"frequencyBinCount",
|
26864
27428
|
"from",
|
27429
|
+
"fromAsync",
|
26865
27430
|
"fromCharCode",
|
26866
27431
|
"fromCodePoint",
|
26867
27432
|
"fromElement",
|
@@ -26874,7 +27439,9 @@ var domprops = [
|
|
26874
27439
|
"fromRect",
|
26875
27440
|
"frontFace",
|
26876
27441
|
"fround",
|
27442
|
+
"fullName",
|
26877
27443
|
"fullPath",
|
27444
|
+
"fullRange",
|
26878
27445
|
"fullScreen",
|
26879
27446
|
"fullVersionList",
|
26880
27447
|
"fullscreen",
|
@@ -26909,6 +27476,7 @@ var domprops = [
|
|
26909
27476
|
"getAllowlistForFeature",
|
26910
27477
|
"getAnimations",
|
26911
27478
|
"getAsFile",
|
27479
|
+
"getAsFileSystemHandle",
|
26912
27480
|
"getAsString",
|
26913
27481
|
"getAttachedShaders",
|
26914
27482
|
"getAttribLocation",
|
@@ -26919,6 +27487,8 @@ var domprops = [
|
|
26919
27487
|
"getAttributeNodeNS",
|
26920
27488
|
"getAttributeType",
|
26921
27489
|
"getAudioTracks",
|
27490
|
+
"getAuthenticatorData",
|
27491
|
+
"getAutoplayPolicy",
|
26922
27492
|
"getAvailability",
|
26923
27493
|
"getBBox",
|
26924
27494
|
"getBattery",
|
@@ -26936,9 +27506,11 @@ var domprops = [
|
|
26936
27506
|
"getByteTimeDomainData",
|
26937
27507
|
"getCSSCanvasContext",
|
26938
27508
|
"getCTM",
|
27509
|
+
"getCameraImage",
|
26939
27510
|
"getCandidateWindowClientRect",
|
26940
27511
|
"getCanonicalLocales",
|
26941
27512
|
"getCapabilities",
|
27513
|
+
"getCaptureHandle",
|
26942
27514
|
"getChannelData",
|
26943
27515
|
"getCharNumAtPosition",
|
26944
27516
|
"getCharacteristic",
|
@@ -26968,11 +27540,14 @@ var domprops = [
|
|
26968
27540
|
"getDate",
|
26969
27541
|
"getDay",
|
26970
27542
|
"getDefaultComputedStyle",
|
27543
|
+
"getDepthInMeters",
|
27544
|
+
"getDepthInformation",
|
26971
27545
|
"getDescriptor",
|
26972
27546
|
"getDescriptors",
|
26973
27547
|
"getDestinationInsertionPoints",
|
26974
27548
|
"getDevices",
|
26975
27549
|
"getDirectory",
|
27550
|
+
"getDirectoryHandle",
|
26976
27551
|
"getDisplayMedia",
|
26977
27552
|
"getDistributedNodes",
|
26978
27553
|
"getEditable",
|
@@ -26991,7 +27566,9 @@ var domprops = [
|
|
26991
27566
|
"getExtentOfChar",
|
26992
27567
|
"getEyeParameters",
|
26993
27568
|
"getFeature",
|
27569
|
+
"getFiberRoots",
|
26994
27570
|
"getFile",
|
27571
|
+
"getFileHandle",
|
26995
27572
|
"getFiles",
|
26996
27573
|
"getFilesAndDirectories",
|
26997
27574
|
"getFingerprints",
|
@@ -27006,6 +27583,7 @@ var domprops = [
|
|
27006
27583
|
"getFrequencyResponse",
|
27007
27584
|
"getFullYear",
|
27008
27585
|
"getGamepads",
|
27586
|
+
"getHeaderExtensionsToNegotiate",
|
27009
27587
|
"getHighEntropyValues",
|
27010
27588
|
"getHitTestResults",
|
27011
27589
|
"getHitTestResultsForTransientInput",
|
@@ -27014,10 +27592,13 @@ var domprops = [
|
|
27014
27592
|
"getIds",
|
27015
27593
|
"getImageData",
|
27016
27594
|
"getIndexedParameter",
|
27595
|
+
"getInfo",
|
27596
|
+
"getInnerHTML",
|
27017
27597
|
"getInstalledRelatedApps",
|
27018
27598
|
"getInt16",
|
27019
27599
|
"getInt32",
|
27020
27600
|
"getInt8",
|
27601
|
+
"getInternalModuleRanges",
|
27021
27602
|
"getInternalformatParameter",
|
27022
27603
|
"getIntersectionList",
|
27023
27604
|
"getItem",
|
@@ -27026,10 +27607,12 @@ var domprops = [
|
|
27026
27607
|
"getKeyframes",
|
27027
27608
|
"getLayers",
|
27028
27609
|
"getLayoutMap",
|
27610
|
+
"getLightEstimate",
|
27029
27611
|
"getLineDash",
|
27030
27612
|
"getLocalCandidates",
|
27031
27613
|
"getLocalParameters",
|
27032
27614
|
"getLocalStreams",
|
27615
|
+
"getManagedConfiguration",
|
27033
27616
|
"getMappedRange",
|
27034
27617
|
"getMarks",
|
27035
27618
|
"getMatchedCSSRules",
|
@@ -27040,9 +27623,12 @@ var domprops = [
|
|
27040
27623
|
"getMinutes",
|
27041
27624
|
"getModifierState",
|
27042
27625
|
"getMonth",
|
27626
|
+
"getName",
|
27043
27627
|
"getNamedItem",
|
27044
27628
|
"getNamedItemNS",
|
27045
27629
|
"getNativeFramebufferScaleFactor",
|
27630
|
+
"getNegotiatedHeaderExtensions",
|
27631
|
+
"getNestedConfigs",
|
27046
27632
|
"getNotifications",
|
27047
27633
|
"getNotifier",
|
27048
27634
|
"getNumberOfChars",
|
@@ -27061,6 +27647,7 @@ var domprops = [
|
|
27061
27647
|
"getPhotoCapabilities",
|
27062
27648
|
"getPhotoSettings",
|
27063
27649
|
"getPointAtLength",
|
27650
|
+
"getPorts",
|
27064
27651
|
"getPose",
|
27065
27652
|
"getPredictedEvents",
|
27066
27653
|
"getPreference",
|
@@ -27078,6 +27665,8 @@ var domprops = [
|
|
27078
27665
|
"getPropertyType",
|
27079
27666
|
"getPropertyValue",
|
27080
27667
|
"getPrototypeOf",
|
27668
|
+
"getPublicKey",
|
27669
|
+
"getPublicKeyAlgorithm",
|
27081
27670
|
"getQuery",
|
27082
27671
|
"getQueryParameter",
|
27083
27672
|
"getRGBColorValue",
|
@@ -27086,6 +27675,7 @@ var domprops = [
|
|
27086
27675
|
"getReader",
|
27087
27676
|
"getReceivers",
|
27088
27677
|
"getRectValue",
|
27678
|
+
"getReflectionCubeMap",
|
27089
27679
|
"getRegistration",
|
27090
27680
|
"getRegistrations",
|
27091
27681
|
"getRemoteCandidates",
|
@@ -27100,16 +27690,19 @@ var domprops = [
|
|
27100
27690
|
"getSVGDocument",
|
27101
27691
|
"getSamplerParameter",
|
27102
27692
|
"getScreenCTM",
|
27693
|
+
"getScreenDetails",
|
27103
27694
|
"getSeconds",
|
27104
27695
|
"getSelectedCandidatePair",
|
27105
27696
|
"getSelection",
|
27106
27697
|
"getSenders",
|
27107
27698
|
"getService",
|
27699
|
+
"getSetCookie",
|
27108
27700
|
"getSettings",
|
27109
27701
|
"getShaderInfoLog",
|
27110
27702
|
"getShaderParameter",
|
27111
27703
|
"getShaderPrecisionFormat",
|
27112
27704
|
"getShaderSource",
|
27705
|
+
"getSignals",
|
27113
27706
|
"getSimpleDuration",
|
27114
27707
|
"getSiteIcons",
|
27115
27708
|
"getSources",
|
@@ -27124,6 +27717,7 @@ var domprops = [
|
|
27124
27717
|
"getStringValue",
|
27125
27718
|
"getSubStringLength",
|
27126
27719
|
"getSubscription",
|
27720
|
+
"getSubscriptions",
|
27127
27721
|
"getSupportedConstraints",
|
27128
27722
|
"getSupportedExtensions",
|
27129
27723
|
"getSupportedFormats",
|
@@ -27132,9 +27726,11 @@ var domprops = [
|
|
27132
27726
|
"getTags",
|
27133
27727
|
"getTargetRanges",
|
27134
27728
|
"getTexParameter",
|
27729
|
+
"getTextFormats",
|
27135
27730
|
"getTime",
|
27136
27731
|
"getTimezoneOffset",
|
27137
27732
|
"getTiming",
|
27733
|
+
"getTitlebarAreaRect",
|
27138
27734
|
"getTotalLength",
|
27139
27735
|
"getTrackById",
|
27140
27736
|
"getTracks",
|
@@ -27160,6 +27756,7 @@ var domprops = [
|
|
27160
27756
|
"getUniformBlockIndex",
|
27161
27757
|
"getUniformIndices",
|
27162
27758
|
"getUniformLocation",
|
27759
|
+
"getUserInfo",
|
27163
27760
|
"getUserMedia",
|
27164
27761
|
"getVRDisplays",
|
27165
27762
|
"getValues",
|
@@ -27179,6 +27776,7 @@ var domprops = [
|
|
27179
27776
|
"global",
|
27180
27777
|
"globalAlpha",
|
27181
27778
|
"globalCompositeOperation",
|
27779
|
+
"globalPrivacyControl",
|
27182
27780
|
"globalThis",
|
27183
27781
|
"glyphOrientationHorizontal",
|
27184
27782
|
"glyphOrientationVertical",
|
@@ -27228,13 +27826,15 @@ var domprops = [
|
|
27228
27826
|
"gridTemplateRows",
|
27229
27827
|
"gripSpace",
|
27230
27828
|
"group",
|
27231
|
-
"
|
27829
|
+
"groupBy",
|
27232
27830
|
"groupCollapsed",
|
27233
27831
|
"groupEnd",
|
27234
27832
|
"groupId",
|
27833
|
+
"groups",
|
27235
27834
|
"hadRecentInput",
|
27236
27835
|
"hand",
|
27237
27836
|
"handedness",
|
27837
|
+
"hangingBaseline",
|
27238
27838
|
"hapticActuators",
|
27239
27839
|
"hardwareConcurrency",
|
27240
27840
|
"has",
|
@@ -27250,24 +27850,34 @@ var domprops = [
|
|
27250
27850
|
"hasExternalDisplay",
|
27251
27851
|
"hasFeature",
|
27252
27852
|
"hasFocus",
|
27853
|
+
"hasIndices",
|
27253
27854
|
"hasInstance",
|
27254
27855
|
"hasLayout",
|
27255
27856
|
"hasOrientation",
|
27857
|
+
"hasOwn",
|
27256
27858
|
"hasOwnProperty",
|
27257
27859
|
"hasPointerCapture",
|
27258
27860
|
"hasPosition",
|
27861
|
+
"hasPrivateToken",
|
27259
27862
|
"hasReading",
|
27863
|
+
"hasRedemptionRecord",
|
27864
|
+
"hasRegExpGroups",
|
27260
27865
|
"hasStorageAccess",
|
27866
|
+
"hasUAVisualTransition",
|
27261
27867
|
"hash",
|
27868
|
+
"hashChange",
|
27262
27869
|
"head",
|
27263
27870
|
"headers",
|
27264
27871
|
"heading",
|
27265
27872
|
"height",
|
27873
|
+
"hid",
|
27266
27874
|
"hidden",
|
27267
27875
|
"hide",
|
27268
27876
|
"hideFocus",
|
27877
|
+
"hidePopover",
|
27269
27878
|
"high",
|
27270
27879
|
"highWaterMark",
|
27880
|
+
"highlights",
|
27271
27881
|
"hint",
|
27272
27882
|
"hints",
|
27273
27883
|
"history",
|
@@ -27287,8 +27897,11 @@ var domprops = [
|
|
27287
27897
|
"httpEquiv",
|
27288
27898
|
"httpRequestStatusCode",
|
27289
27899
|
"hwTimestamp",
|
27900
|
+
"hyphenate-character",
|
27901
|
+
"hyphenateCharacter",
|
27290
27902
|
"hyphens",
|
27291
27903
|
"hypot",
|
27904
|
+
"ic",
|
27292
27905
|
"iccId",
|
27293
27906
|
"iceConnectionState",
|
27294
27907
|
"iceGatheringState",
|
@@ -27298,10 +27911,12 @@ var domprops = [
|
|
27298
27911
|
"id",
|
27299
27912
|
"identifier",
|
27300
27913
|
"identity",
|
27914
|
+
"ideographicBaseline",
|
27301
27915
|
"idpLoginUrl",
|
27302
27916
|
"ignoreBOM",
|
27303
27917
|
"ignoreCase",
|
27304
27918
|
"ignoreDepthValues",
|
27919
|
+
"image",
|
27305
27920
|
"image-orientation",
|
27306
27921
|
"image-rendering",
|
27307
27922
|
"imageHeight",
|
@@ -27329,6 +27944,10 @@ var domprops = [
|
|
27329
27944
|
"inBandMetadataTrackDispatchType",
|
27330
27945
|
"inRange",
|
27331
27946
|
"includes",
|
27947
|
+
"incomingBidirectionalStreams",
|
27948
|
+
"incomingHighWaterMark",
|
27949
|
+
"incomingMaxAge",
|
27950
|
+
"incomingUnidirectionalStreams",
|
27332
27951
|
"incremental",
|
27333
27952
|
"indeterminate",
|
27334
27953
|
"index",
|
@@ -27341,6 +27960,7 @@ var domprops = [
|
|
27341
27960
|
"inertiaDestinationX",
|
27342
27961
|
"inertiaDestinationY",
|
27343
27962
|
"info",
|
27963
|
+
"inherits",
|
27344
27964
|
"init",
|
27345
27965
|
"initAnimationEvent",
|
27346
27966
|
"initBeforeLoadEvent",
|
@@ -27387,8 +28007,11 @@ var domprops = [
|
|
27387
28007
|
"initWebKitWheelEvent",
|
27388
28008
|
"initWheelEvent",
|
27389
28009
|
"initialTime",
|
28010
|
+
"initialValue",
|
27390
28011
|
"initialize",
|
27391
28012
|
"initiatorType",
|
28013
|
+
"inject",
|
28014
|
+
"ink",
|
27392
28015
|
"inline-size",
|
27393
28016
|
"inlineSize",
|
27394
28017
|
"inlineVerticalFieldOfView",
|
@@ -27440,6 +28063,7 @@ var domprops = [
|
|
27440
28063
|
"int32",
|
27441
28064
|
"int8",
|
27442
28065
|
"integrity",
|
28066
|
+
"interactionId",
|
27443
28067
|
"interactionMode",
|
27444
28068
|
"intercept",
|
27445
28069
|
"interfaceClass",
|
@@ -27451,6 +28075,7 @@ var domprops = [
|
|
27451
28075
|
"interimResults",
|
27452
28076
|
"internalSubset",
|
27453
28077
|
"interpretation",
|
28078
|
+
"intersection",
|
27454
28079
|
"intersectionRatio",
|
27455
28080
|
"intersectionRect",
|
27456
28081
|
"intersectsNode",
|
@@ -27460,11 +28085,14 @@ var domprops = [
|
|
27460
28085
|
"invalidateSubFramebuffer",
|
27461
28086
|
"inverse",
|
27462
28087
|
"invertSelf",
|
28088
|
+
"invoker",
|
28089
|
+
"invokerType",
|
27463
28090
|
"is",
|
27464
28091
|
"is2D",
|
27465
28092
|
"isActive",
|
27466
28093
|
"isAlternate",
|
27467
28094
|
"isArray",
|
28095
|
+
"isAutoSelected",
|
27468
28096
|
"isBingCurrentSearchDefault",
|
27469
28097
|
"isBuffer",
|
27470
28098
|
"isCandidateWindowVisible",
|
@@ -27472,6 +28100,8 @@ var domprops = [
|
|
27472
28100
|
"isCollapsed",
|
27473
28101
|
"isComposing",
|
27474
28102
|
"isConcatSpreadable",
|
28103
|
+
"isConditionalMediationAvailable",
|
28104
|
+
"isConfigSupported",
|
27475
28105
|
"isConnected",
|
27476
28106
|
"isContentEditable",
|
27477
28107
|
"isContentHandlerRegistered",
|
@@ -27479,14 +28109,17 @@ var domprops = [
|
|
27479
28109
|
"isDefaultNamespace",
|
27480
28110
|
"isDirectory",
|
27481
28111
|
"isDisabled",
|
28112
|
+
"isDisjointFrom",
|
27482
28113
|
"isEnabled",
|
27483
28114
|
"isEqual",
|
27484
28115
|
"isEqualNode",
|
28116
|
+
"isExtended",
|
27485
28117
|
"isExtensible",
|
27486
28118
|
"isExternalCTAP2SecurityKeySupported",
|
27487
28119
|
"isFallbackAdapter",
|
27488
28120
|
"isFile",
|
27489
28121
|
"isFinite",
|
28122
|
+
"isFirstPersonObserver",
|
27490
28123
|
"isFramebuffer",
|
27491
28124
|
"isFrozen",
|
27492
28125
|
"isGenerator",
|
@@ -27495,7 +28128,9 @@ var domprops = [
|
|
27495
28128
|
"isId",
|
27496
28129
|
"isIdentity",
|
27497
28130
|
"isInjected",
|
28131
|
+
"isInputPending",
|
27498
28132
|
"isInteger",
|
28133
|
+
"isInternal",
|
27499
28134
|
"isIntersecting",
|
27500
28135
|
"isLockFree",
|
27501
28136
|
"isMap",
|
@@ -27514,8 +28149,10 @@ var domprops = [
|
|
27514
28149
|
"isProtocolHandlerRegistered",
|
27515
28150
|
"isPrototypeOf",
|
27516
28151
|
"isQuery",
|
28152
|
+
"isRawJSON",
|
27517
28153
|
"isRenderbuffer",
|
27518
28154
|
"isSafeInteger",
|
28155
|
+
"isSameEntry",
|
27519
28156
|
"isSameNode",
|
27520
28157
|
"isSampler",
|
27521
28158
|
"isScript",
|
@@ -27524,6 +28161,8 @@ var domprops = [
|
|
27524
28161
|
"isSecureContext",
|
27525
28162
|
"isSessionSupported",
|
27526
28163
|
"isShader",
|
28164
|
+
"isSubsetOf",
|
28165
|
+
"isSupersetOf",
|
27527
28166
|
"isSupported",
|
27528
28167
|
"isSync",
|
27529
28168
|
"isTextEdit",
|
@@ -27535,6 +28174,7 @@ var domprops = [
|
|
27535
28174
|
"isVertexArray",
|
27536
28175
|
"isView",
|
27537
28176
|
"isVisible",
|
28177
|
+
"isWellFormed",
|
27538
28178
|
"isochronousTransferIn",
|
27539
28179
|
"isochronousTransferOut",
|
27540
28180
|
"isolation",
|
@@ -27551,8 +28191,10 @@ var domprops = [
|
|
27551
28191
|
"iterationComposite",
|
27552
28192
|
"iterator",
|
27553
28193
|
"javaEnabled",
|
28194
|
+
"jitterBufferTarget",
|
27554
28195
|
"jobTitle",
|
27555
28196
|
"join",
|
28197
|
+
"joinAdInterestGroup",
|
27556
28198
|
"json",
|
27557
28199
|
"justify-content",
|
27558
28200
|
"justify-items",
|
@@ -27608,6 +28250,8 @@ var domprops = [
|
|
27608
28250
|
"lastState",
|
27609
28251
|
"lastStyleSheetSet",
|
27610
28252
|
"latitude",
|
28253
|
+
"launchQueue",
|
28254
|
+
"layerName",
|
27611
28255
|
"layerX",
|
27612
28256
|
"layerY",
|
27613
28257
|
"layout",
|
@@ -27618,6 +28262,7 @@ var domprops = [
|
|
27618
28262
|
"layoutGridMode",
|
27619
28263
|
"layoutGridType",
|
27620
28264
|
"lbound",
|
28265
|
+
"leaveAdInterestGroup",
|
27621
28266
|
"left",
|
27622
28267
|
"leftContext",
|
27623
28268
|
"leftDegrees",
|
@@ -27630,6 +28275,7 @@ var domprops = [
|
|
27630
28275
|
"letter-spacing",
|
27631
28276
|
"letterSpacing",
|
27632
28277
|
"level",
|
28278
|
+
"lh",
|
27633
28279
|
"lighting-color",
|
27634
28280
|
"lightingColor",
|
27635
28281
|
"limitingConeAngle",
|
@@ -27641,6 +28287,7 @@ var domprops = [
|
|
27641
28287
|
"lineBreak",
|
27642
28288
|
"lineCap",
|
27643
28289
|
"lineDashOffset",
|
28290
|
+
"lineGapOverride",
|
27644
28291
|
"lineHeight",
|
27645
28292
|
"lineJoin",
|
27646
28293
|
"lineNum",
|
@@ -27667,6 +28314,7 @@ var domprops = [
|
|
27667
28314
|
"listStylePosition",
|
27668
28315
|
"listStyleType",
|
27669
28316
|
"listener",
|
28317
|
+
"listeners",
|
27670
28318
|
"load",
|
27671
28319
|
"loadEventEnd",
|
27672
28320
|
"loadEventStart",
|
@@ -27695,6 +28343,8 @@ var domprops = [
|
|
27695
28343
|
"log2",
|
27696
28344
|
"logicalXDPI",
|
27697
28345
|
"logicalYDPI",
|
28346
|
+
"login",
|
28347
|
+
"loglevel",
|
27698
28348
|
"longDesc",
|
27699
28349
|
"longitude",
|
27700
28350
|
"lookupNamespaceURI",
|
@@ -27709,6 +28359,12 @@ var domprops = [
|
|
27709
28359
|
"lowerBound",
|
27710
28360
|
"lowerOpen",
|
27711
28361
|
"lowsrc",
|
28362
|
+
"lvb",
|
28363
|
+
"lvh",
|
28364
|
+
"lvi",
|
28365
|
+
"lvmax",
|
28366
|
+
"lvmin",
|
28367
|
+
"lvw",
|
27712
28368
|
"m11",
|
27713
28369
|
"m12",
|
27714
28370
|
"m13",
|
@@ -27727,6 +28383,7 @@ var domprops = [
|
|
27727
28383
|
"m44",
|
27728
28384
|
"magFilter",
|
27729
28385
|
"makeXRCompatible",
|
28386
|
+
"managed",
|
27730
28387
|
"manifest",
|
27731
28388
|
"manufacturer",
|
27732
28389
|
"manufacturerName",
|
@@ -27802,6 +28459,10 @@ var domprops = [
|
|
27802
28459
|
"matchMedia",
|
27803
28460
|
"matchMedium",
|
27804
28461
|
"matches",
|
28462
|
+
"math-depth",
|
28463
|
+
"math-style",
|
28464
|
+
"mathDepth",
|
28465
|
+
"mathStyle",
|
27805
28466
|
"matrix",
|
27806
28467
|
"matrixTransform",
|
27807
28468
|
"max",
|
@@ -27817,6 +28478,7 @@ var domprops = [
|
|
27817
28478
|
"maxBindingsPerBindGroup",
|
27818
28479
|
"maxBlockSize",
|
27819
28480
|
"maxBufferSize",
|
28481
|
+
"maxByteLength",
|
27820
28482
|
"maxChannelCount",
|
27821
28483
|
"maxChannels",
|
27822
28484
|
"maxColorAttachmentBytesPerSample",
|
@@ -27828,6 +28490,7 @@ var domprops = [
|
|
27828
28490
|
"maxComputeWorkgroupStorageSize",
|
27829
28491
|
"maxComputeWorkgroupsPerDimension",
|
27830
28492
|
"maxConnectionsPerServer",
|
28493
|
+
"maxDatagramSize",
|
27831
28494
|
"maxDecibels",
|
27832
28495
|
"maxDistance",
|
27833
28496
|
"maxDrawCount",
|
@@ -28171,12 +28834,17 @@ var domprops = [
|
|
28171
28834
|
"muted",
|
28172
28835
|
"n",
|
28173
28836
|
"name",
|
28837
|
+
"nameList",
|
28174
28838
|
"nameProp",
|
28175
28839
|
"namedItem",
|
28176
28840
|
"namedRecordset",
|
28177
28841
|
"names",
|
28178
28842
|
"namespaceURI",
|
28179
28843
|
"namespaces",
|
28844
|
+
"nativeMap",
|
28845
|
+
"nativeObjectCreate",
|
28846
|
+
"nativeSet",
|
28847
|
+
"nativeWeakMap",
|
28180
28848
|
"naturalHeight",
|
28181
28849
|
"naturalWidth",
|
28182
28850
|
"navigate",
|
@@ -28184,6 +28852,7 @@ var domprops = [
|
|
28184
28852
|
"navigationMode",
|
28185
28853
|
"navigationPreload",
|
28186
28854
|
"navigationStart",
|
28855
|
+
"navigationType",
|
28187
28856
|
"navigator",
|
28188
28857
|
"near",
|
28189
28858
|
"nearestViewportElement",
|
@@ -28192,6 +28861,7 @@ var domprops = [
|
|
28192
28861
|
"netscape",
|
28193
28862
|
"networkState",
|
28194
28863
|
"newScale",
|
28864
|
+
"newState",
|
28195
28865
|
"newTranslate",
|
28196
28866
|
"newURL",
|
28197
28867
|
"newValue",
|
@@ -28216,8 +28886,10 @@ var domprops = [
|
|
28216
28886
|
"nodeType",
|
28217
28887
|
"nodeValue",
|
28218
28888
|
"nonce",
|
28889
|
+
"normDepthBufferFromNormView",
|
28219
28890
|
"normalize",
|
28220
28891
|
"normalizedPathSegList",
|
28892
|
+
"notRestoredReasons",
|
28221
28893
|
"notationName",
|
28222
28894
|
"notations",
|
28223
28895
|
"note",
|
@@ -28229,6 +28901,7 @@ var domprops = [
|
|
28229
28901
|
"numOctaves",
|
28230
28902
|
"number",
|
28231
28903
|
"numberOfChannels",
|
28904
|
+
"numberOfFrames",
|
28232
28905
|
"numberOfInputs",
|
28233
28906
|
"numberOfItems",
|
28234
28907
|
"numberOfOutputs",
|
@@ -28245,11 +28918,13 @@ var domprops = [
|
|
28245
28918
|
"observe",
|
28246
28919
|
"occlusionQuerySet",
|
28247
28920
|
"of",
|
28921
|
+
"off",
|
28248
28922
|
"offscreenBuffering",
|
28249
28923
|
"offset",
|
28250
28924
|
"offset-anchor",
|
28251
28925
|
"offset-distance",
|
28252
28926
|
"offset-path",
|
28927
|
+
"offset-position",
|
28253
28928
|
"offset-rotate",
|
28254
28929
|
"offsetAnchor",
|
28255
28930
|
"offsetDistance",
|
@@ -28258,17 +28933,23 @@ var domprops = [
|
|
28258
28933
|
"offsetNode",
|
28259
28934
|
"offsetParent",
|
28260
28935
|
"offsetPath",
|
28936
|
+
"offsetPosition",
|
28261
28937
|
"offsetRotate",
|
28262
28938
|
"offsetTop",
|
28263
28939
|
"offsetWidth",
|
28264
28940
|
"offsetX",
|
28265
28941
|
"offsetY",
|
28266
28942
|
"ok",
|
28943
|
+
"oldState",
|
28267
28944
|
"oldURL",
|
28268
28945
|
"oldValue",
|
28269
28946
|
"oldVersion",
|
28270
28947
|
"olderShadowRoot",
|
28948
|
+
"on",
|
28949
|
+
"onCommitFiberRoot",
|
28950
|
+
"onCommitFiberUnmount",
|
28271
28951
|
"onLine",
|
28952
|
+
"onPostCommitFiberRoot",
|
28272
28953
|
"onSubmittedWorkDone",
|
28273
28954
|
"onabort",
|
28274
28955
|
"onabsolutedeviceorientation",
|
@@ -28296,10 +28977,13 @@ var domprops = [
|
|
28296
28977
|
"onbeforecut",
|
28297
28978
|
"onbeforedeactivate",
|
28298
28979
|
"onbeforeeditfocus",
|
28980
|
+
"onbeforeinput",
|
28299
28981
|
"onbeforeinstallprompt",
|
28982
|
+
"onbeforematch",
|
28300
28983
|
"onbeforepaste",
|
28301
28984
|
"onbeforeprint",
|
28302
28985
|
"onbeforescriptexecute",
|
28986
|
+
"onbeforetoggle",
|
28303
28987
|
"onbeforeunload",
|
28304
28988
|
"onbeforeupdate",
|
28305
28989
|
"onbeforexrselect",
|
@@ -28316,9 +29000,11 @@ var domprops = [
|
|
28316
29000
|
"oncandidatewindowupdate",
|
28317
29001
|
"oncanplay",
|
28318
29002
|
"oncanplaythrough",
|
29003
|
+
"oncapturehandlechange",
|
28319
29004
|
"once",
|
28320
29005
|
"oncellchange",
|
28321
29006
|
"onchange",
|
29007
|
+
"oncharacterboundsupdate",
|
28322
29008
|
"oncharacteristicvaluechanged",
|
28323
29009
|
"onchargingchange",
|
28324
29010
|
"onchargingtimechange",
|
@@ -28328,15 +29014,22 @@ var domprops = [
|
|
28328
29014
|
"onclosing",
|
28329
29015
|
"oncompassneedscalibration",
|
28330
29016
|
"oncomplete",
|
29017
|
+
"oncompositionend",
|
29018
|
+
"oncompositionstart",
|
28331
29019
|
"onconnect",
|
28332
29020
|
"onconnecting",
|
28333
29021
|
"onconnectionavailable",
|
28334
29022
|
"onconnectionstatechange",
|
29023
|
+
"oncontentvisibilityautostatechange",
|
29024
|
+
"oncontextlost",
|
28335
29025
|
"oncontextmenu",
|
29026
|
+
"oncontextrestored",
|
28336
29027
|
"oncontrollerchange",
|
28337
29028
|
"oncontrolselect",
|
28338
29029
|
"oncopy",
|
28339
29030
|
"oncuechange",
|
29031
|
+
"oncurrententrychange",
|
29032
|
+
"oncurrentscreenchange",
|
28340
29033
|
"oncut",
|
28341
29034
|
"ondataavailable",
|
28342
29035
|
"ondatachannel",
|
@@ -28344,6 +29037,7 @@ var domprops = [
|
|
28344
29037
|
"ondatasetcomplete",
|
28345
29038
|
"ondblclick",
|
28346
29039
|
"ondeactivate",
|
29040
|
+
"ondequeue",
|
28347
29041
|
"ondevicechange",
|
28348
29042
|
"ondevicelight",
|
28349
29043
|
"ondevicemotion",
|
@@ -28353,6 +29047,7 @@ var domprops = [
|
|
28353
29047
|
"ondischargingtimechange",
|
28354
29048
|
"ondisconnect",
|
28355
29049
|
"ondisplay",
|
29050
|
+
"ondispose",
|
28356
29051
|
"ondownloading",
|
28357
29052
|
"ondrag",
|
28358
29053
|
"ondragend",
|
@@ -28372,6 +29067,7 @@ var domprops = [
|
|
28372
29067
|
"onerror",
|
28373
29068
|
"onerrorupdate",
|
28374
29069
|
"onexit",
|
29070
|
+
"onfencedtreeclick",
|
28375
29071
|
"onfilterchange",
|
28376
29072
|
"onfinish",
|
28377
29073
|
"onfocus",
|
@@ -28381,8 +29077,11 @@ var domprops = [
|
|
28381
29077
|
"onfreeze",
|
28382
29078
|
"onfullscreenchange",
|
28383
29079
|
"onfullscreenerror",
|
29080
|
+
"ongamepadconnected",
|
29081
|
+
"ongamepaddisconnected",
|
28384
29082
|
"ongatheringstatechange",
|
28385
29083
|
"ongattserverdisconnected",
|
29084
|
+
"ongeometrychange",
|
28386
29085
|
"ongesturechange",
|
28387
29086
|
"ongestureend",
|
28388
29087
|
"ongesturestart",
|
@@ -28395,6 +29094,7 @@ var domprops = [
|
|
28395
29094
|
"onicegatheringstatechange",
|
28396
29095
|
"oninactive",
|
28397
29096
|
"oninput",
|
29097
|
+
"oninputreport",
|
28398
29098
|
"oninputsourceschange",
|
28399
29099
|
"oninvalid",
|
28400
29100
|
"onkeydown",
|
@@ -28416,6 +29116,7 @@ var domprops = [
|
|
28416
29116
|
"onlosecapture",
|
28417
29117
|
"onlostpointercapture",
|
28418
29118
|
"only",
|
29119
|
+
"onmanagedconfigurationchange",
|
28419
29120
|
"onmark",
|
28420
29121
|
"onmessage",
|
28421
29122
|
"onmessageerror",
|
@@ -28463,6 +29164,9 @@ var domprops = [
|
|
28463
29164
|
"onmssitemodejumplistitemremoved",
|
28464
29165
|
"onmsthumbnailclick",
|
28465
29166
|
"onmute",
|
29167
|
+
"onnavigate",
|
29168
|
+
"onnavigateerror",
|
29169
|
+
"onnavigatesuccess",
|
28466
29170
|
"onnegotiationneeded",
|
28467
29171
|
"onnomatch",
|
28468
29172
|
"onnoupdate",
|
@@ -28473,7 +29177,9 @@ var domprops = [
|
|
28473
29177
|
"onorientationchange",
|
28474
29178
|
"onpagechange",
|
28475
29179
|
"onpagehide",
|
29180
|
+
"onpagereveal",
|
28476
29181
|
"onpageshow",
|
29182
|
+
"onpageswap",
|
28477
29183
|
"onpaste",
|
28478
29184
|
"onpause",
|
28479
29185
|
"onpayerdetailchange",
|
@@ -28493,12 +29199,15 @@ var domprops = [
|
|
28493
29199
|
"onpointerrawupdate",
|
28494
29200
|
"onpointerup",
|
28495
29201
|
"onpopstate",
|
29202
|
+
"onprerenderingchange",
|
29203
|
+
"onprioritychange",
|
28496
29204
|
"onprocessorerror",
|
28497
29205
|
"onprogress",
|
28498
29206
|
"onpropertychange",
|
28499
29207
|
"onratechange",
|
28500
29208
|
"onreading",
|
28501
29209
|
"onreadystatechange",
|
29210
|
+
"onreflectionchange",
|
28502
29211
|
"onrejectionhandled",
|
28503
29212
|
"onrelease",
|
28504
29213
|
"onremove",
|
@@ -28517,7 +29226,9 @@ var domprops = [
|
|
28517
29226
|
"onrowexit",
|
28518
29227
|
"onrowsdelete",
|
28519
29228
|
"onrowsinserted",
|
29229
|
+
"onscreenschange",
|
28520
29230
|
"onscroll",
|
29231
|
+
"onscrollend",
|
28521
29232
|
"onsearch",
|
28522
29233
|
"onsecuritypolicyviolation",
|
28523
29234
|
"onseeked",
|
@@ -28531,6 +29242,8 @@ var domprops = [
|
|
28531
29242
|
"onshippingoptionchange",
|
28532
29243
|
"onshow",
|
28533
29244
|
"onsignalingstatechange",
|
29245
|
+
"onsinkchange",
|
29246
|
+
"onslotchange",
|
28534
29247
|
"onsoundend",
|
28535
29248
|
"onsoundstart",
|
28536
29249
|
"onsourceclose",
|
@@ -28552,7 +29265,9 @@ var domprops = [
|
|
28552
29265
|
"onsuccess",
|
28553
29266
|
"onsuspend",
|
28554
29267
|
"onterminate",
|
29268
|
+
"ontextformatupdate",
|
28555
29269
|
"ontextinput",
|
29270
|
+
"ontextupdate",
|
28556
29271
|
"ontimeout",
|
28557
29272
|
"ontimeupdate",
|
28558
29273
|
"ontoggle",
|
@@ -28636,6 +29351,7 @@ var domprops = [
|
|
28636
29351
|
"orientationY",
|
28637
29352
|
"orientationZ",
|
28638
29353
|
"origin",
|
29354
|
+
"originAgentCluster",
|
28639
29355
|
"originalPolicy",
|
28640
29356
|
"originalTarget",
|
28641
29357
|
"orphans",
|
@@ -28644,6 +29360,8 @@ var domprops = [
|
|
28644
29360
|
"outerHeight",
|
28645
29361
|
"outerText",
|
28646
29362
|
"outerWidth",
|
29363
|
+
"outgoingHighWaterMark",
|
29364
|
+
"outgoingMaxAge",
|
28647
29365
|
"outline",
|
28648
29366
|
"outline-color",
|
28649
29367
|
"outline-offset",
|
@@ -28660,16 +29378,20 @@ var domprops = [
|
|
28660
29378
|
"overflow",
|
28661
29379
|
"overflow-anchor",
|
28662
29380
|
"overflow-block",
|
29381
|
+
"overflow-clip-margin",
|
28663
29382
|
"overflow-inline",
|
28664
29383
|
"overflow-wrap",
|
28665
29384
|
"overflow-x",
|
28666
29385
|
"overflow-y",
|
28667
29386
|
"overflowAnchor",
|
28668
29387
|
"overflowBlock",
|
29388
|
+
"overflowClipMargin",
|
28669
29389
|
"overflowInline",
|
28670
29390
|
"overflowWrap",
|
28671
29391
|
"overflowX",
|
28672
29392
|
"overflowY",
|
29393
|
+
"overlaysContent",
|
29394
|
+
"overrideColors",
|
28673
29395
|
"overrideMimeType",
|
28674
29396
|
"oversample",
|
28675
29397
|
"overscroll-behavior",
|
@@ -28753,9 +29475,12 @@ var domprops = [
|
|
28753
29475
|
"parentWindow",
|
28754
29476
|
"parse",
|
28755
29477
|
"parseAll",
|
29478
|
+
"parseCreationOptionsFromJSON",
|
28756
29479
|
"parseFloat",
|
28757
29480
|
"parseFromString",
|
29481
|
+
"parseHTMLUnsafe",
|
28758
29482
|
"parseInt",
|
29483
|
+
"parseRequestOptionsFromJSON",
|
28759
29484
|
"part",
|
28760
29485
|
"participants",
|
28761
29486
|
"passOp",
|
@@ -28775,6 +29500,7 @@ var domprops = [
|
|
28775
29500
|
"patternUnits",
|
28776
29501
|
"pause",
|
28777
29502
|
"pauseAnimations",
|
29503
|
+
"pauseDuration",
|
28778
29504
|
"pauseOnExit",
|
28779
29505
|
"pauseProfilers",
|
28780
29506
|
"pauseTransformFeedback",
|
@@ -28784,6 +29510,7 @@ var domprops = [
|
|
28784
29510
|
"payerPhone",
|
28785
29511
|
"paymentManager",
|
28786
29512
|
"pc",
|
29513
|
+
"pdfViewerEnabled",
|
28787
29514
|
"peerIdentity",
|
28788
29515
|
"pending",
|
28789
29516
|
"pendingLocalDescription",
|
@@ -28858,6 +29585,9 @@ var domprops = [
|
|
28858
29585
|
"pop",
|
28859
29586
|
"popDebugGroup",
|
28860
29587
|
"popErrorScope",
|
29588
|
+
"popover",
|
29589
|
+
"popoverTargetAction",
|
29590
|
+
"popoverTargetElement",
|
28861
29591
|
"populateMatrix",
|
28862
29592
|
"popupWindowFeatures",
|
28863
29593
|
"popupWindowName",
|
@@ -28880,24 +29610,30 @@ var domprops = [
|
|
28880
29610
|
"positionZ",
|
28881
29611
|
"postError",
|
28882
29612
|
"postMessage",
|
29613
|
+
"postTask",
|
28883
29614
|
"postalCode",
|
28884
29615
|
"poster",
|
29616
|
+
"postscriptName",
|
28885
29617
|
"pow",
|
28886
29618
|
"powerEfficient",
|
28887
29619
|
"powerOff",
|
28888
29620
|
"powerPreference",
|
28889
29621
|
"preMultiplySelf",
|
28890
29622
|
"precision",
|
29623
|
+
"preferredReflectionFormat",
|
28891
29624
|
"preferredStyleSheetSet",
|
28892
29625
|
"preferredStylesheetSet",
|
28893
29626
|
"prefix",
|
28894
29627
|
"preload",
|
28895
29628
|
"premultipliedAlpha",
|
28896
29629
|
"prepend",
|
29630
|
+
"prerendering",
|
28897
29631
|
"presentation",
|
29632
|
+
"presentationArea",
|
28898
29633
|
"preserveAlpha",
|
28899
29634
|
"preserveAspectRatio",
|
28900
29635
|
"preserveAspectRatioString",
|
29636
|
+
"preservesPitch",
|
28901
29637
|
"pressed",
|
28902
29638
|
"pressure",
|
28903
29639
|
"prevValue",
|
@@ -28907,19 +29643,27 @@ var domprops = [
|
|
28907
29643
|
"previousElementSibling",
|
28908
29644
|
"previousNode",
|
28909
29645
|
"previousPage",
|
29646
|
+
"previousPriority",
|
28910
29647
|
"previousRect",
|
28911
29648
|
"previousScale",
|
28912
29649
|
"previousSibling",
|
28913
29650
|
"previousTranslate",
|
29651
|
+
"primaries",
|
28914
29652
|
"primaryKey",
|
29653
|
+
"primaryLightDirection",
|
29654
|
+
"primaryLightIntensity",
|
28915
29655
|
"primitive",
|
28916
29656
|
"primitiveType",
|
28917
29657
|
"primitiveUnits",
|
28918
29658
|
"principals",
|
28919
29659
|
"print",
|
29660
|
+
"print-color-adjust",
|
29661
|
+
"printColorAdjust",
|
28920
29662
|
"priority",
|
28921
29663
|
"privateKey",
|
29664
|
+
"privateToken",
|
28922
29665
|
"probablySupportsContext",
|
29666
|
+
"probeSpace",
|
28923
29667
|
"process",
|
28924
29668
|
"processIceMessage",
|
28925
29669
|
"processingEnd",
|
@@ -28968,6 +29712,8 @@ var domprops = [
|
|
28968
29712
|
"queryCommandSupported",
|
28969
29713
|
"queryCommandText",
|
28970
29714
|
"queryCommandValue",
|
29715
|
+
"queryLocalFonts",
|
29716
|
+
"queryPermission",
|
28971
29717
|
"querySelector",
|
28972
29718
|
"querySelectorAll",
|
28973
29719
|
"querySet",
|
@@ -28984,18 +29730,25 @@ var domprops = [
|
|
28984
29730
|
"radiusX",
|
28985
29731
|
"radiusY",
|
28986
29732
|
"random",
|
29733
|
+
"randomUUID",
|
28987
29734
|
"range",
|
28988
29735
|
"rangeCount",
|
29736
|
+
"rangeEnd",
|
28989
29737
|
"rangeMax",
|
28990
29738
|
"rangeMin",
|
28991
29739
|
"rangeOffset",
|
28992
29740
|
"rangeOverflow",
|
28993
29741
|
"rangeParent",
|
29742
|
+
"rangeStart",
|
28994
29743
|
"rangeUnderflow",
|
28995
29744
|
"rate",
|
28996
29745
|
"ratio",
|
28997
29746
|
"raw",
|
28998
29747
|
"rawId",
|
29748
|
+
"rawJSON",
|
29749
|
+
"rawValueToMeters",
|
29750
|
+
"rcap",
|
29751
|
+
"rch",
|
28999
29752
|
"read",
|
29000
29753
|
"readAsArrayBuffer",
|
29001
29754
|
"readAsBinaryString",
|
@@ -29013,11 +29766,14 @@ var domprops = [
|
|
29013
29766
|
"ready",
|
29014
29767
|
"readyState",
|
29015
29768
|
"reason",
|
29769
|
+
"reasons",
|
29016
29770
|
"reboot",
|
29771
|
+
"receiveFeatureReport",
|
29017
29772
|
"receivedAlert",
|
29018
29773
|
"receiver",
|
29019
29774
|
"receivers",
|
29020
29775
|
"recipient",
|
29776
|
+
"recommendedViewportScale",
|
29021
29777
|
"reconnect",
|
29022
29778
|
"recordNumber",
|
29023
29779
|
"recordsAvailable",
|
@@ -29049,6 +29805,8 @@ var domprops = [
|
|
29049
29805
|
"register",
|
29050
29806
|
"registerContentHandler",
|
29051
29807
|
"registerElement",
|
29808
|
+
"registerInternalModuleStart",
|
29809
|
+
"registerInternalModuleStop",
|
29052
29810
|
"registerProperty",
|
29053
29811
|
"registerProtocolHandler",
|
29054
29812
|
"reject",
|
@@ -29058,6 +29816,7 @@ var domprops = [
|
|
29058
29816
|
"relatedNode",
|
29059
29817
|
"relatedPort",
|
29060
29818
|
"relatedTarget",
|
29819
|
+
"relayProtocol",
|
29061
29820
|
"release",
|
29062
29821
|
"releaseCapture",
|
29063
29822
|
"releaseEvents",
|
@@ -29065,6 +29824,8 @@ var domprops = [
|
|
29065
29824
|
"releaseLock",
|
29066
29825
|
"releasePointerCapture",
|
29067
29826
|
"releaseShaderCompiler",
|
29827
|
+
"released",
|
29828
|
+
"reliability",
|
29068
29829
|
"reliable",
|
29069
29830
|
"reliableWrite",
|
29070
29831
|
"reload",
|
@@ -29080,6 +29841,7 @@ var domprops = [
|
|
29080
29841
|
"removeBehavior",
|
29081
29842
|
"removeChild",
|
29082
29843
|
"removeCue",
|
29844
|
+
"removeEntry",
|
29083
29845
|
"removeEventListener",
|
29084
29846
|
"removeFilter",
|
29085
29847
|
"removeImport",
|
@@ -29102,16 +29864,21 @@ var domprops = [
|
|
29102
29864
|
"removeWebWideTrackingException",
|
29103
29865
|
"removed",
|
29104
29866
|
"removedNodes",
|
29867
|
+
"renderBlockingStatus",
|
29105
29868
|
"renderHeight",
|
29869
|
+
"renderStart",
|
29106
29870
|
"renderState",
|
29107
29871
|
"renderTime",
|
29108
29872
|
"renderWidth",
|
29109
29873
|
"renderbufferStorage",
|
29110
29874
|
"renderbufferStorageMultisample",
|
29111
29875
|
"renderedBuffer",
|
29876
|
+
"rendererInterfaces",
|
29877
|
+
"renderers",
|
29112
29878
|
"renderingMode",
|
29113
29879
|
"renotify",
|
29114
29880
|
"repeat",
|
29881
|
+
"repetitionCount",
|
29115
29882
|
"replace",
|
29116
29883
|
"replaceAdjacentText",
|
29117
29884
|
"replaceAll",
|
@@ -29126,6 +29893,9 @@ var domprops = [
|
|
29126
29893
|
"replaceTrack",
|
29127
29894
|
"replaceWholeText",
|
29128
29895
|
"replaceWith",
|
29896
|
+
"reportError",
|
29897
|
+
"reportEvent",
|
29898
|
+
"reportId",
|
29129
29899
|
"reportValidity",
|
29130
29900
|
"request",
|
29131
29901
|
"requestAdapter",
|
@@ -29140,18 +29910,24 @@ var domprops = [
|
|
29140
29910
|
"requestHitTestSourceForTransientInput",
|
29141
29911
|
"requestId",
|
29142
29912
|
"requestIdleCallback",
|
29913
|
+
"requestLightProbe",
|
29143
29914
|
"requestMIDIAccess",
|
29144
29915
|
"requestMediaKeySystemAccess",
|
29145
29916
|
"requestPermission",
|
29146
29917
|
"requestPictureInPicture",
|
29147
29918
|
"requestPointerLock",
|
29919
|
+
"requestPort",
|
29148
29920
|
"requestPresent",
|
29921
|
+
"requestPresenter",
|
29149
29922
|
"requestReferenceSpace",
|
29150
29923
|
"requestSession",
|
29151
29924
|
"requestStart",
|
29152
29925
|
"requestStorageAccess",
|
29926
|
+
"requestStorageAccessFor",
|
29153
29927
|
"requestSubmit",
|
29154
29928
|
"requestVideoFrameCallback",
|
29929
|
+
"requestViewportScale",
|
29930
|
+
"requestWindow",
|
29155
29931
|
"requestingWindow",
|
29156
29932
|
"requireInteraction",
|
29157
29933
|
"required",
|
@@ -29161,6 +29937,7 @@ var domprops = [
|
|
29161
29937
|
"reset",
|
29162
29938
|
"resetPose",
|
29163
29939
|
"resetTransform",
|
29940
|
+
"resizable",
|
29164
29941
|
"resize",
|
29165
29942
|
"resizeBy",
|
29166
29943
|
"resizeTo",
|
@@ -29168,11 +29945,14 @@ var domprops = [
|
|
29168
29945
|
"resolveQuerySet",
|
29169
29946
|
"resolveTarget",
|
29170
29947
|
"resource",
|
29948
|
+
"respond",
|
29949
|
+
"respondWithNewView",
|
29171
29950
|
"response",
|
29172
29951
|
"responseBody",
|
29173
29952
|
"responseEnd",
|
29174
29953
|
"responseReady",
|
29175
29954
|
"responseStart",
|
29955
|
+
"responseStatus",
|
29176
29956
|
"responseText",
|
29177
29957
|
"responseType",
|
29178
29958
|
"responseURL",
|
@@ -29193,13 +29973,16 @@ var domprops = [
|
|
29193
29973
|
"reversed",
|
29194
29974
|
"revocable",
|
29195
29975
|
"revokeObjectURL",
|
29976
|
+
"rex",
|
29196
29977
|
"rgbColor",
|
29978
|
+
"ric",
|
29197
29979
|
"right",
|
29198
29980
|
"rightContext",
|
29199
29981
|
"rightDegrees",
|
29200
29982
|
"rightMargin",
|
29201
29983
|
"rightProjectionMatrix",
|
29202
29984
|
"rightViewMatrix",
|
29985
|
+
"rlh",
|
29203
29986
|
"role",
|
29204
29987
|
"rolloffFactor",
|
29205
29988
|
"root",
|
@@ -29231,15 +30014,19 @@ var domprops = [
|
|
29231
30014
|
"rubyOverhang",
|
29232
30015
|
"rubyPosition",
|
29233
30016
|
"rules",
|
30017
|
+
"run",
|
30018
|
+
"runAdAuction",
|
29234
30019
|
"runtime",
|
29235
30020
|
"runtimeStyle",
|
29236
30021
|
"rx",
|
29237
30022
|
"ry",
|
29238
30023
|
"s",
|
29239
30024
|
"safari",
|
30025
|
+
"sameDocument",
|
29240
30026
|
"sample",
|
29241
30027
|
"sampleCount",
|
29242
30028
|
"sampleCoverage",
|
30029
|
+
"sampleInterval",
|
29243
30030
|
"sampleRate",
|
29244
30031
|
"sampleType",
|
29245
30032
|
"sampler",
|
@@ -29254,6 +30041,8 @@ var domprops = [
|
|
29254
30041
|
"scaleNonUniform",
|
29255
30042
|
"scaleNonUniformSelf",
|
29256
30043
|
"scaleSelf",
|
30044
|
+
"scheduler",
|
30045
|
+
"scheduling",
|
29257
30046
|
"scheme",
|
29258
30047
|
"scissor",
|
29259
30048
|
"scope",
|
@@ -29265,9 +30054,11 @@ var domprops = [
|
|
29265
30054
|
"screenLeft",
|
29266
30055
|
"screenPixelToMillimeterX",
|
29267
30056
|
"screenPixelToMillimeterY",
|
30057
|
+
"screenState",
|
29268
30058
|
"screenTop",
|
29269
30059
|
"screenX",
|
29270
30060
|
"screenY",
|
30061
|
+
"screens",
|
29271
30062
|
"scriptURL",
|
29272
30063
|
"scripts",
|
29273
30064
|
"scroll",
|
@@ -29295,6 +30086,7 @@ var domprops = [
|
|
29295
30086
|
"scroll-padding-right",
|
29296
30087
|
"scroll-padding-top",
|
29297
30088
|
"scroll-snap-align",
|
30089
|
+
"scroll-snap-stop",
|
29298
30090
|
"scroll-snap-type",
|
29299
30091
|
"scrollAmount",
|
29300
30092
|
"scrollBehavior",
|
@@ -29333,6 +30125,7 @@ var domprops = [
|
|
29333
30125
|
"scrollPaddingTop",
|
29334
30126
|
"scrollRestoration",
|
29335
30127
|
"scrollSnapAlign",
|
30128
|
+
"scrollSnapStop",
|
29336
30129
|
"scrollSnapType",
|
29337
30130
|
"scrollTo",
|
29338
30131
|
"scrollTop",
|
@@ -29341,6 +30134,7 @@ var domprops = [
|
|
29341
30134
|
"scrollX",
|
29342
30135
|
"scrollY",
|
29343
30136
|
"scrollbar-color",
|
30137
|
+
"scrollbar-gutter",
|
29344
30138
|
"scrollbar-width",
|
29345
30139
|
"scrollbar3dLightColor",
|
29346
30140
|
"scrollbarArrowColor",
|
@@ -29348,6 +30142,7 @@ var domprops = [
|
|
29348
30142
|
"scrollbarColor",
|
29349
30143
|
"scrollbarDarkShadowColor",
|
29350
30144
|
"scrollbarFaceColor",
|
30145
|
+
"scrollbarGutter",
|
29351
30146
|
"scrollbarHighlightColor",
|
29352
30147
|
"scrollbarShadowColor",
|
29353
30148
|
"scrollbarTrackColor",
|
@@ -29370,23 +30165,27 @@ var domprops = [
|
|
29370
30165
|
"secureConnectionStart",
|
29371
30166
|
"security",
|
29372
30167
|
"seed",
|
30168
|
+
"seek",
|
29373
30169
|
"seekToNextFrame",
|
29374
30170
|
"seekable",
|
29375
30171
|
"seeking",
|
29376
30172
|
"select",
|
29377
30173
|
"selectAllChildren",
|
29378
30174
|
"selectAlternateInterface",
|
30175
|
+
"selectAudioOutput",
|
29379
30176
|
"selectConfiguration",
|
29380
30177
|
"selectNode",
|
29381
30178
|
"selectNodeContents",
|
29382
30179
|
"selectNodes",
|
29383
30180
|
"selectSingleNode",
|
29384
30181
|
"selectSubString",
|
30182
|
+
"selectURL",
|
29385
30183
|
"selected",
|
29386
30184
|
"selectedIndex",
|
29387
30185
|
"selectedOptions",
|
29388
30186
|
"selectedStyleSheetSet",
|
29389
30187
|
"selectedStylesheetSet",
|
30188
|
+
"selectedTrack",
|
29390
30189
|
"selection",
|
29391
30190
|
"selectionDirection",
|
29392
30191
|
"selectionEnd",
|
@@ -29397,10 +30196,14 @@ var domprops = [
|
|
29397
30196
|
"send",
|
29398
30197
|
"sendAsBinary",
|
29399
30198
|
"sendBeacon",
|
30199
|
+
"sendFeatureReport",
|
30200
|
+
"sendOrder",
|
30201
|
+
"sendReport",
|
29400
30202
|
"sender",
|
29401
30203
|
"sentAlert",
|
29402
30204
|
"sentTimestamp",
|
29403
30205
|
"separator",
|
30206
|
+
"serial",
|
29404
30207
|
"serialNumber",
|
29405
30208
|
"serializeToString",
|
29406
30209
|
"serverTiming",
|
@@ -29418,17 +30221,21 @@ var domprops = [
|
|
29418
30221
|
"setAttributeNS",
|
29419
30222
|
"setAttributeNode",
|
29420
30223
|
"setAttributeNodeNS",
|
30224
|
+
"setAttributionReporting",
|
29421
30225
|
"setBaseAndExtent",
|
29422
30226
|
"setBigInt64",
|
29423
30227
|
"setBigUint64",
|
29424
30228
|
"setBindGroup",
|
29425
30229
|
"setBingCurrentSearchDefault",
|
29426
30230
|
"setBlendConstant",
|
30231
|
+
"setCameraActive",
|
29427
30232
|
"setCapture",
|
30233
|
+
"setCaptureHandleConfig",
|
29428
30234
|
"setCodecPreferences",
|
29429
30235
|
"setColor",
|
29430
30236
|
"setCompositeOperation",
|
29431
30237
|
"setConfiguration",
|
30238
|
+
"setConsumer",
|
29432
30239
|
"setCurrentTime",
|
29433
30240
|
"setCustomValidity",
|
29434
30241
|
"setData",
|
@@ -29438,13 +30245,17 @@ var domprops = [
|
|
29438
30245
|
"setEndAfter",
|
29439
30246
|
"setEndBefore",
|
29440
30247
|
"setEndPoint",
|
30248
|
+
"setExpires",
|
29441
30249
|
"setFillColor",
|
29442
30250
|
"setFilterRes",
|
29443
30251
|
"setFloat32",
|
29444
30252
|
"setFloat64",
|
29445
30253
|
"setFloatValue",
|
30254
|
+
"setFocusBehavior",
|
29446
30255
|
"setFormValue",
|
29447
30256
|
"setFullYear",
|
30257
|
+
"setHTMLUnsafe",
|
30258
|
+
"setHeaderExtensionsToNegotiate",
|
29448
30259
|
"setHeaderValue",
|
29449
30260
|
"setHours",
|
29450
30261
|
"setIdentityProvider",
|
@@ -29465,6 +30276,7 @@ var domprops = [
|
|
29465
30276
|
"setMatrix",
|
29466
30277
|
"setMatrixValue",
|
29467
30278
|
"setMediaKeys",
|
30279
|
+
"setMicrophoneActive",
|
29468
30280
|
"setMilliseconds",
|
29469
30281
|
"setMinutes",
|
29470
30282
|
"setMiterLimit",
|
@@ -29485,6 +30297,8 @@ var domprops = [
|
|
29485
30297
|
"setPosition",
|
29486
30298
|
"setPositionState",
|
29487
30299
|
"setPreference",
|
30300
|
+
"setPriority",
|
30301
|
+
"setPrivateToken",
|
29488
30302
|
"setProperty",
|
29489
30303
|
"setPrototypeOf",
|
29490
30304
|
"setRGBColor",
|
@@ -29492,6 +30306,7 @@ var domprops = [
|
|
29492
30306
|
"setRadius",
|
29493
30307
|
"setRangeText",
|
29494
30308
|
"setRemoteDescription",
|
30309
|
+
"setReportEventDataForAutomaticBeacons",
|
29495
30310
|
"setRequestHeader",
|
29496
30311
|
"setResizable",
|
29497
30312
|
"setResourceTimingBufferSize",
|
@@ -29502,15 +30317,19 @@ var domprops = [
|
|
29502
30317
|
"setSelectionRange",
|
29503
30318
|
"setServerCertificate",
|
29504
30319
|
"setShadow",
|
30320
|
+
"setSharedStorageContext",
|
30321
|
+
"setSignals",
|
29505
30322
|
"setSinkId",
|
29506
30323
|
"setSkewX",
|
29507
30324
|
"setSkewY",
|
29508
30325
|
"setStart",
|
29509
30326
|
"setStartAfter",
|
29510
30327
|
"setStartBefore",
|
30328
|
+
"setStatus",
|
29511
30329
|
"setStdDeviation",
|
29512
30330
|
"setStencilReference",
|
29513
30331
|
"setStreams",
|
30332
|
+
"setStrictMode",
|
29514
30333
|
"setStringValue",
|
29515
30334
|
"setStrokeColor",
|
29516
30335
|
"setSuggestResult",
|
@@ -29550,6 +30369,9 @@ var domprops = [
|
|
29550
30369
|
"shadowOffsetX",
|
29551
30370
|
"shadowOffsetY",
|
29552
30371
|
"shadowRoot",
|
30372
|
+
"shadowRootClonable",
|
30373
|
+
"shadowRootDelegatesFocus",
|
30374
|
+
"shadowRootMode",
|
29553
30375
|
"shape",
|
29554
30376
|
"shape-image-threshold",
|
29555
30377
|
"shape-margin",
|
@@ -29559,6 +30381,9 @@ var domprops = [
|
|
29559
30381
|
"shapeMargin",
|
29560
30382
|
"shapeOutside",
|
29561
30383
|
"shapeRendering",
|
30384
|
+
"share",
|
30385
|
+
"sharedStorage",
|
30386
|
+
"sharedStorageWritable",
|
29562
30387
|
"sheet",
|
29563
30388
|
"shift",
|
29564
30389
|
"shiftKey",
|
@@ -29567,11 +30392,16 @@ var domprops = [
|
|
29567
30392
|
"shippingOption",
|
29568
30393
|
"shippingType",
|
29569
30394
|
"show",
|
30395
|
+
"showDirectoryPicker",
|
29570
30396
|
"showHelp",
|
29571
30397
|
"showModal",
|
29572
30398
|
"showModalDialog",
|
29573
30399
|
"showModelessDialog",
|
29574
30400
|
"showNotification",
|
30401
|
+
"showOpenFilePicker",
|
30402
|
+
"showPicker",
|
30403
|
+
"showPopover",
|
30404
|
+
"showSaveFilePicker",
|
29575
30405
|
"sidebar",
|
29576
30406
|
"sign",
|
29577
30407
|
"signal",
|
@@ -29584,6 +30414,7 @@ var domprops = [
|
|
29584
30414
|
"sinkId",
|
29585
30415
|
"sittingToStandingTransform",
|
29586
30416
|
"size",
|
30417
|
+
"sizeAdjust",
|
29587
30418
|
"sizeToContent",
|
29588
30419
|
"sizeX",
|
29589
30420
|
"sizeZ",
|
@@ -29592,9 +30423,12 @@ var domprops = [
|
|
29592
30423
|
"skewXSelf",
|
29593
30424
|
"skewY",
|
29594
30425
|
"skewYSelf",
|
30426
|
+
"skipTransition",
|
30427
|
+
"skipped",
|
29595
30428
|
"slice",
|
29596
30429
|
"slope",
|
29597
30430
|
"slot",
|
30431
|
+
"slotAssignment",
|
29598
30432
|
"small",
|
29599
30433
|
"smil",
|
29600
30434
|
"smooth",
|
@@ -29609,9 +30443,12 @@ var domprops = [
|
|
29609
30443
|
"sourceBuffer",
|
29610
30444
|
"sourceBuffers",
|
29611
30445
|
"sourceCapabilities",
|
30446
|
+
"sourceCharPosition",
|
29612
30447
|
"sourceFile",
|
30448
|
+
"sourceFunctionName",
|
29613
30449
|
"sourceIndex",
|
29614
30450
|
"sourceMap",
|
30451
|
+
"sourceURL",
|
29615
30452
|
"sources",
|
29616
30453
|
"spacing",
|
29617
30454
|
"span",
|
@@ -29626,6 +30463,7 @@ var domprops = [
|
|
29626
30463
|
"speed",
|
29627
30464
|
"speedOfSound",
|
29628
30465
|
"spellcheck",
|
30466
|
+
"sphericalHarmonicsCoefficients",
|
29629
30467
|
"splice",
|
29630
30468
|
"split",
|
29631
30469
|
"splitText",
|
@@ -29656,8 +30494,11 @@ var domprops = [
|
|
29656
30494
|
"startRendering",
|
29657
30495
|
"startShark",
|
29658
30496
|
"startTime",
|
30497
|
+
"startViewTransition",
|
29659
30498
|
"startsWith",
|
29660
30499
|
"state",
|
30500
|
+
"states",
|
30501
|
+
"stats",
|
29661
30502
|
"status",
|
29662
30503
|
"statusCode",
|
29663
30504
|
"statusMessage",
|
@@ -29699,6 +30540,7 @@ var domprops = [
|
|
29699
30540
|
"stopped",
|
29700
30541
|
"storage",
|
29701
30542
|
"storageArea",
|
30543
|
+
"storageBuckets",
|
29702
30544
|
"storageName",
|
29703
30545
|
"storageStatus",
|
29704
30546
|
"storageTexture",
|
@@ -29708,6 +30550,7 @@ var domprops = [
|
|
29708
30550
|
"storeWebWideTrackingException",
|
29709
30551
|
"stpVersion",
|
29710
30552
|
"stream",
|
30553
|
+
"streamErrorCode",
|
29711
30554
|
"streams",
|
29712
30555
|
"stretch",
|
29713
30556
|
"strike",
|
@@ -29733,7 +30576,9 @@ var domprops = [
|
|
29733
30576
|
"strokeStyle",
|
29734
30577
|
"strokeText",
|
29735
30578
|
"strokeWidth",
|
30579
|
+
"structuredClone",
|
29736
30580
|
"style",
|
30581
|
+
"styleAndLayoutStart",
|
29737
30582
|
"styleFloat",
|
29738
30583
|
"styleMap",
|
29739
30584
|
"styleMedia",
|
@@ -29759,17 +30604,28 @@ var domprops = [
|
|
29759
30604
|
"supported",
|
29760
30605
|
"supportedContentEncodings",
|
29761
30606
|
"supportedEntryTypes",
|
30607
|
+
"supportedValuesOf",
|
29762
30608
|
"supports",
|
30609
|
+
"supportsFiber",
|
29763
30610
|
"supportsSession",
|
30611
|
+
"supportsText",
|
29764
30612
|
"surfaceScale",
|
29765
30613
|
"surroundContents",
|
29766
30614
|
"suspend",
|
29767
30615
|
"suspendRedraw",
|
30616
|
+
"svb",
|
30617
|
+
"svh",
|
30618
|
+
"svi",
|
30619
|
+
"svmax",
|
30620
|
+
"svmin",
|
30621
|
+
"svw",
|
29768
30622
|
"swapCache",
|
29769
30623
|
"swapNode",
|
29770
30624
|
"sweepFlag",
|
29771
30625
|
"symbols",
|
30626
|
+
"symmetricDifference",
|
29772
30627
|
"sync",
|
30628
|
+
"syntax",
|
29773
30629
|
"sysexEnabled",
|
29774
30630
|
"system",
|
29775
30631
|
"systemCode",
|
@@ -29780,7 +30636,9 @@ var domprops = [
|
|
29780
30636
|
"tBodies",
|
29781
30637
|
"tFoot",
|
29782
30638
|
"tHead",
|
30639
|
+
"tab-size",
|
29783
30640
|
"tabIndex",
|
30641
|
+
"tabSize",
|
29784
30642
|
"table",
|
29785
30643
|
"table-layout",
|
29786
30644
|
"tableLayout",
|
@@ -29790,16 +30648,19 @@ var domprops = [
|
|
29790
30648
|
"tagUrn",
|
29791
30649
|
"tags",
|
29792
30650
|
"taintEnabled",
|
30651
|
+
"take",
|
29793
30652
|
"takePhoto",
|
29794
30653
|
"takeRecords",
|
29795
30654
|
"tan",
|
29796
30655
|
"tangentialPressure",
|
29797
30656
|
"tanh",
|
29798
30657
|
"target",
|
30658
|
+
"targetAddressSpace",
|
29799
30659
|
"targetElement",
|
29800
30660
|
"targetRayMode",
|
29801
30661
|
"targetRaySpace",
|
29802
30662
|
"targetTouches",
|
30663
|
+
"targetURL",
|
29803
30664
|
"targetX",
|
29804
30665
|
"targetY",
|
29805
30666
|
"targets",
|
@@ -29840,6 +30701,9 @@ var domprops = [
|
|
29840
30701
|
"text-transform",
|
29841
30702
|
"text-underline-offset",
|
29842
30703
|
"text-underline-position",
|
30704
|
+
"text-wrap",
|
30705
|
+
"text-wrap-mode",
|
30706
|
+
"text-wrap-style",
|
29843
30707
|
"textAlign",
|
29844
30708
|
"textAlignLast",
|
29845
30709
|
"textAnchor",
|
@@ -29876,11 +30740,15 @@ var domprops = [
|
|
29876
30740
|
"textTransform",
|
29877
30741
|
"textUnderlineOffset",
|
29878
30742
|
"textUnderlinePosition",
|
30743
|
+
"textWrap",
|
30744
|
+
"textWrapMode",
|
30745
|
+
"textWrapStyle",
|
29879
30746
|
"texture",
|
29880
30747
|
"then",
|
29881
30748
|
"threadId",
|
29882
30749
|
"threshold",
|
29883
30750
|
"thresholds",
|
30751
|
+
"throwIfAborted",
|
29884
30752
|
"tiltX",
|
29885
30753
|
"tiltY",
|
29886
30754
|
"time",
|
@@ -29898,6 +30766,7 @@ var domprops = [
|
|
29898
30766
|
"timestampWrites",
|
29899
30767
|
"timing",
|
29900
30768
|
"title",
|
30769
|
+
"titlebarAreaRect",
|
29901
30770
|
"to",
|
29902
30771
|
"toArray",
|
29903
30772
|
"toBlob",
|
@@ -29922,8 +30791,11 @@ var domprops = [
|
|
29922
30791
|
"toMethod",
|
29923
30792
|
"toPrecision",
|
29924
30793
|
"toPrimitive",
|
30794
|
+
"toReversed",
|
29925
30795
|
"toSdp",
|
30796
|
+
"toSorted",
|
29926
30797
|
"toSource",
|
30798
|
+
"toSpliced",
|
29927
30799
|
"toStaticHTML",
|
29928
30800
|
"toString",
|
29929
30801
|
"toStringTag",
|
@@ -29931,9 +30803,12 @@ var domprops = [
|
|
29931
30803
|
"toTimeString",
|
29932
30804
|
"toUTCString",
|
29933
30805
|
"toUpperCase",
|
30806
|
+
"toWellFormed",
|
29934
30807
|
"toggle",
|
29935
30808
|
"toggleAttribute",
|
29936
30809
|
"toggleLongPressEnabled",
|
30810
|
+
"togglePopover",
|
30811
|
+
"token",
|
29937
30812
|
"tone",
|
29938
30813
|
"toneBuffer",
|
29939
30814
|
"tooLong",
|
@@ -29944,6 +30819,7 @@ var domprops = [
|
|
29944
30819
|
"topology",
|
29945
30820
|
"total",
|
29946
30821
|
"totalFrameDelay",
|
30822
|
+
"totalFrames",
|
29947
30823
|
"totalVideoFrames",
|
29948
30824
|
"touch-action",
|
29949
30825
|
"touchAction",
|
@@ -29952,15 +30828,19 @@ var domprops = [
|
|
29952
30828
|
"trace",
|
29953
30829
|
"track",
|
29954
30830
|
"trackVisibility",
|
30831
|
+
"trackedAnchors",
|
30832
|
+
"tracks",
|
29955
30833
|
"transaction",
|
29956
30834
|
"transactions",
|
29957
30835
|
"transceiver",
|
30836
|
+
"transfer",
|
29958
30837
|
"transferControlToOffscreen",
|
29959
30838
|
"transferFromImageBitmap",
|
29960
30839
|
"transferImageBitmap",
|
29961
30840
|
"transferIn",
|
29962
30841
|
"transferOut",
|
29963
30842
|
"transferSize",
|
30843
|
+
"transferToFixedLength",
|
29964
30844
|
"transferToImageBitmap",
|
29965
30845
|
"transform",
|
29966
30846
|
"transform-box",
|
@@ -29988,6 +30868,7 @@ var domprops = [
|
|
29988
30868
|
"translationX",
|
29989
30869
|
"translationY",
|
29990
30870
|
"transport",
|
30871
|
+
"traverseTo",
|
29991
30872
|
"trim",
|
29992
30873
|
"trimEnd",
|
29993
30874
|
"trimLeft",
|
@@ -30010,15 +30891,19 @@ var domprops = [
|
|
30010
30891
|
"uint32",
|
30011
30892
|
"uint8",
|
30012
30893
|
"uint8Clamped",
|
30894
|
+
"unadjustedMovement",
|
30013
30895
|
"unclippedDepth",
|
30014
30896
|
"unconfigure",
|
30015
30897
|
"undefined",
|
30898
|
+
"underlineStyle",
|
30899
|
+
"underlineThickness",
|
30016
30900
|
"unescape",
|
30017
30901
|
"uneval",
|
30018
30902
|
"unicode",
|
30019
30903
|
"unicode-bidi",
|
30020
30904
|
"unicodeBidi",
|
30021
30905
|
"unicodeRange",
|
30906
|
+
"unicodeSets",
|
30022
30907
|
"uniform1f",
|
30023
30908
|
"uniform1fv",
|
30024
30909
|
"uniform1i",
|
@@ -30053,6 +30938,7 @@ var domprops = [
|
|
30053
30938
|
"uniformMatrix4fv",
|
30054
30939
|
"uniformMatrix4x2fv",
|
30055
30940
|
"uniformMatrix4x3fv",
|
30941
|
+
"union",
|
30056
30942
|
"unique",
|
30057
30943
|
"uniqueID",
|
30058
30944
|
"uniqueNumber",
|
@@ -30065,6 +30951,7 @@ var domprops = [
|
|
30065
30951
|
"unmap",
|
30066
30952
|
"unmount",
|
30067
30953
|
"unobserve",
|
30954
|
+
"unpackColorSpace",
|
30068
30955
|
"unpause",
|
30069
30956
|
"unpauseAnimations",
|
30070
30957
|
"unreadCount",
|
@@ -30084,12 +30971,23 @@ var domprops = [
|
|
30084
30971
|
"upY",
|
30085
30972
|
"upZ",
|
30086
30973
|
"update",
|
30974
|
+
"updateAdInterestGroups",
|
30975
|
+
"updateCallbackDone",
|
30976
|
+
"updateCharacterBounds",
|
30087
30977
|
"updateCommands",
|
30978
|
+
"updateControlBounds",
|
30979
|
+
"updateCurrentEntry",
|
30088
30980
|
"updateIce",
|
30981
|
+
"updateInkTrailStartPoint",
|
30089
30982
|
"updateInterval",
|
30090
30983
|
"updatePlaybackRate",
|
30984
|
+
"updateRangeEnd",
|
30985
|
+
"updateRangeStart",
|
30091
30986
|
"updateRenderState",
|
30987
|
+
"updateSelection",
|
30988
|
+
"updateSelectionBounds",
|
30092
30989
|
"updateSettings",
|
30990
|
+
"updateText",
|
30093
30991
|
"updateTiming",
|
30094
30992
|
"updateViaCache",
|
30095
30993
|
"updateWith",
|
@@ -30123,8 +31021,10 @@ var domprops = [
|
|
30123
31021
|
"userChoice",
|
30124
31022
|
"userHandle",
|
30125
31023
|
"userHint",
|
31024
|
+
"userInitiated",
|
30126
31025
|
"userLanguage",
|
30127
31026
|
"userSelect",
|
31027
|
+
"userState",
|
30128
31028
|
"userVisibleOnly",
|
30129
31029
|
"username",
|
30130
31030
|
"usernameFragment",
|
@@ -30151,6 +31051,7 @@ var domprops = [
|
|
30151
31051
|
"variable",
|
30152
31052
|
"variant",
|
30153
31053
|
"variationSettings",
|
31054
|
+
"vb",
|
30154
31055
|
"vector-effect",
|
30155
31056
|
"vectorEffect",
|
30156
31057
|
"velocityAngular",
|
@@ -30184,6 +31085,7 @@ var domprops = [
|
|
30184
31085
|
"verticalAlign",
|
30185
31086
|
"verticalOverflow",
|
30186
31087
|
"vh",
|
31088
|
+
"vi",
|
30187
31089
|
"vibrate",
|
30188
31090
|
"vibrationActuator",
|
30189
31091
|
"videoBitsPerSecond",
|
@@ -30203,9 +31105,12 @@ var domprops = [
|
|
30203
31105
|
"viewportElement",
|
30204
31106
|
"views",
|
30205
31107
|
"violatedDirective",
|
31108
|
+
"virtualKeyboard",
|
31109
|
+
"virtualKeyboardPolicy",
|
30206
31110
|
"visibility",
|
30207
31111
|
"visibilityState",
|
30208
31112
|
"visible",
|
31113
|
+
"visibleRect",
|
30209
31114
|
"visualViewport",
|
30210
31115
|
"vlinkColor",
|
30211
31116
|
"vmax",
|
@@ -30218,6 +31123,7 @@ var domprops = [
|
|
30218
31123
|
"vw",
|
30219
31124
|
"w",
|
30220
31125
|
"wait",
|
31126
|
+
"waitAsync",
|
30221
31127
|
"waitSync",
|
30222
31128
|
"waiting",
|
30223
31129
|
"wake",
|
@@ -30284,6 +31190,7 @@ var domprops = [
|
|
30284
31190
|
"webkitCancelKeyRequest",
|
30285
31191
|
"webkitCancelRequestAnimationFrame",
|
30286
31192
|
"webkitClearResourceTimings",
|
31193
|
+
"webkitClipPath",
|
30287
31194
|
"webkitClosedCaptionsVisible",
|
30288
31195
|
"webkitConvertPointFromNodeToPage",
|
30289
31196
|
"webkitConvertPointFromPageToNode",
|
@@ -30391,6 +31298,7 @@ var domprops = [
|
|
30391
31298
|
"webkitSupportsFullscreen",
|
30392
31299
|
"webkitTemporaryStorage",
|
30393
31300
|
"webkitTextFillColor",
|
31301
|
+
"webkitTextSecurity",
|
30394
31302
|
"webkitTextSizeAdjust",
|
30395
31303
|
"webkitTextStroke",
|
30396
31304
|
"webkitTextStrokeColor",
|
@@ -30421,7 +31329,9 @@ var domprops = [
|
|
30421
31329
|
"whenDefined",
|
30422
31330
|
"which",
|
30423
31331
|
"white-space",
|
31332
|
+
"white-space-collapse",
|
30424
31333
|
"whiteSpace",
|
31334
|
+
"whiteSpaceCollapse",
|
30425
31335
|
"wholeText",
|
30426
31336
|
"widows",
|
30427
31337
|
"width",
|
@@ -30429,7 +31339,11 @@ var domprops = [
|
|
30429
31339
|
"willChange",
|
30430
31340
|
"willValidate",
|
30431
31341
|
"window",
|
31342
|
+
"windowAttribution",
|
31343
|
+
"windowControlsOverlay",
|
31344
|
+
"with",
|
30432
31345
|
"withCredentials",
|
31346
|
+
"withResolvers",
|
30433
31347
|
"word-break",
|
30434
31348
|
"word-spacing",
|
30435
31349
|
"word-wrap",
|
@@ -30437,6 +31351,7 @@ var domprops = [
|
|
30437
31351
|
"wordSpacing",
|
30438
31352
|
"wordWrap",
|
30439
31353
|
"workerStart",
|
31354
|
+
"worklet",
|
30440
31355
|
"wow64",
|
30441
31356
|
"wrap",
|
30442
31357
|
"wrapKey",
|
@@ -30449,10 +31364,13 @@ var domprops = [
|
|
30449
31364
|
"writeTexture",
|
30450
31365
|
"writeTimestamp",
|
30451
31366
|
"writeValue",
|
31367
|
+
"writeValueWithResponse",
|
31368
|
+
"writeValueWithoutResponse",
|
30452
31369
|
"writeWithoutResponse",
|
30453
31370
|
"writeln",
|
30454
31371
|
"writing-mode",
|
30455
31372
|
"writingMode",
|
31373
|
+
"writingSuggestions",
|
30456
31374
|
"x",
|
30457
31375
|
"x1",
|
30458
31376
|
"x2",
|
@@ -30765,7 +31683,9 @@ function mangle_properties(ast, options, annotated_props = find_annotated_props(
|
|
30765
31683
|
} else if (node instanceof AST_ObjectProperty) {
|
30766
31684
|
// setter, getter, method or class field
|
30767
31685
|
if (!keep_quoted || !node.quote) {
|
30768
|
-
|
31686
|
+
if (!node.computed_key()) {
|
31687
|
+
node.key.name = mangle(node.key.name);
|
31688
|
+
}
|
30769
31689
|
}
|
30770
31690
|
} else if (node instanceof AST_Dot) {
|
30771
31691
|
if (!keep_quoted || !node.quote) {
|
@@ -31142,7 +32062,7 @@ function* minify_sync_or_async(files, options, _fs_module) {
|
|
31142
32062
|
if (node.block_scope) {
|
31143
32063
|
node.block_scope.variables = undefined;
|
31144
32064
|
node.block_scope.enclosed = undefined;
|
31145
|
-
node.parent_scope = undefined;
|
32065
|
+
node.block_scope.parent_scope = undefined;
|
31146
32066
|
}
|
31147
32067
|
});
|
31148
32068
|
}
|