terser 5.44.1 → 5.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/bundle.min.js +214 -35
- package/lib/compress/common.js +2 -2
- package/lib/compress/index.js +24 -22
- package/lib/compress/inline.js +8 -9
- package/lib/compress/reduce-vars.js +3 -4
- package/lib/compress/tighten-body.js +4 -4
- package/lib/utils/index.js +11 -1
- package/package.json +5 -1
- package/tools/domprops.js +169 -0
- package/tools/props.html +13 -1
package/dist/bundle.min.js
CHANGED
|
@@ -132,6 +132,15 @@ function make_node(ctor, orig, props) {
|
|
|
132
132
|
return new ctor(props);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
/** Makes a `void 0` expression. Use instead of AST_Undefined which may conflict
|
|
136
|
+
* with an existing variable called `undefined` */
|
|
137
|
+
function make_void_0(orig) {
|
|
138
|
+
return make_node(AST_UnaryPrefix, orig, {
|
|
139
|
+
operator: "void",
|
|
140
|
+
expression: make_node(AST_Number, orig, { value: 0 })
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
|
|
135
144
|
function push_uniq(array, el) {
|
|
136
145
|
if (!array.includes(el))
|
|
137
146
|
array.push(el);
|
|
@@ -13558,7 +13567,7 @@ function make_node_from_constant(val, orig) {
|
|
|
13558
13567
|
case "boolean":
|
|
13559
13568
|
return make_node(val ? AST_True : AST_False, orig);
|
|
13560
13569
|
case "undefined":
|
|
13561
|
-
return
|
|
13570
|
+
return make_void_0(orig);
|
|
13562
13571
|
default:
|
|
13563
13572
|
if (val === null) {
|
|
13564
13573
|
return make_node(AST_Null, orig, { value: null });
|
|
@@ -16408,7 +16417,7 @@ function safe_to_read(tw, def) {
|
|
|
16408
16417
|
if (def.fixed == null) {
|
|
16409
16418
|
var orig = def.orig[0];
|
|
16410
16419
|
if (orig instanceof AST_SymbolFunarg || orig.name == "arguments") return false;
|
|
16411
|
-
def.fixed =
|
|
16420
|
+
def.fixed = make_void_0(orig);
|
|
16412
16421
|
}
|
|
16413
16422
|
return true;
|
|
16414
16423
|
}
|
|
@@ -16706,7 +16715,7 @@ function mark_lambda(tw, descend, compressor) {
|
|
|
16706
16715
|
if (d.orig.length > 1) return;
|
|
16707
16716
|
if (d.fixed === undefined && (!this.uses_arguments || tw.has_directive("use strict"))) {
|
|
16708
16717
|
d.fixed = function() {
|
|
16709
|
-
return iife.args[i] ||
|
|
16718
|
+
return iife.args[i] || make_void_0(iife);
|
|
16710
16719
|
};
|
|
16711
16720
|
tw.loop_ids.set(d.id, tw.in_loop);
|
|
16712
16721
|
mark(tw, d, true);
|
|
@@ -17630,7 +17639,7 @@ function tighten_body(statements, compressor) {
|
|
|
17630
17639
|
}
|
|
17631
17640
|
} else {
|
|
17632
17641
|
if (!arg) {
|
|
17633
|
-
arg =
|
|
17642
|
+
arg = make_void_0(sym).transform(compressor);
|
|
17634
17643
|
} else if (arg instanceof AST_Lambda && arg.pinned()
|
|
17635
17644
|
|| has_overlapping_symbol(fn, arg, fn_strict)) {
|
|
17636
17645
|
arg = null;
|
|
@@ -17870,7 +17879,7 @@ function tighten_body(statements, compressor) {
|
|
|
17870
17879
|
found = true;
|
|
17871
17880
|
if (node instanceof AST_VarDef) {
|
|
17872
17881
|
node.value = node.name instanceof AST_SymbolConst
|
|
17873
|
-
?
|
|
17882
|
+
? make_void_0(node.value) // `const` always needs value.
|
|
17874
17883
|
: null;
|
|
17875
17884
|
return node;
|
|
17876
17885
|
}
|
|
@@ -18309,7 +18318,7 @@ function tighten_body(statements, compressor) {
|
|
|
18309
18318
|
var stat = statements[i];
|
|
18310
18319
|
if (prev) {
|
|
18311
18320
|
if (stat instanceof AST_Exit) {
|
|
18312
|
-
stat.value = cons_seq(stat.value ||
|
|
18321
|
+
stat.value = cons_seq(stat.value || make_void_0(stat).transform(compressor));
|
|
18313
18322
|
} else if (stat instanceof AST_For) {
|
|
18314
18323
|
if (!(stat.init instanceof AST_DefinitionsLike)) {
|
|
18315
18324
|
const abort = walk(prev.body, node => {
|
|
@@ -18813,7 +18822,7 @@ function inline_into_call(self, compressor) {
|
|
|
18813
18822
|
if (returned) {
|
|
18814
18823
|
returned = returned.clone(true);
|
|
18815
18824
|
} else {
|
|
18816
|
-
returned =
|
|
18825
|
+
returned = make_void_0(self);
|
|
18817
18826
|
}
|
|
18818
18827
|
const args = self.args.concat(returned);
|
|
18819
18828
|
return make_sequence(self, args).optimize(compressor);
|
|
@@ -18829,7 +18838,7 @@ function inline_into_call(self, compressor) {
|
|
|
18829
18838
|
&& returned.name === fn.argnames[0].name
|
|
18830
18839
|
) {
|
|
18831
18840
|
const replacement =
|
|
18832
|
-
(self.args[0] ||
|
|
18841
|
+
(self.args[0] || make_void_0()).optimize(compressor);
|
|
18833
18842
|
|
|
18834
18843
|
let parent;
|
|
18835
18844
|
if (
|
|
@@ -18911,7 +18920,7 @@ function inline_into_call(self, compressor) {
|
|
|
18911
18920
|
|
|
18912
18921
|
const can_drop_this_call = is_regular_func && compressor.option("side_effects") && fn.body.every(is_empty);
|
|
18913
18922
|
if (can_drop_this_call) {
|
|
18914
|
-
var args = self.args.concat(
|
|
18923
|
+
var args = self.args.concat(make_void_0(self));
|
|
18915
18924
|
return make_sequence(self, args).optimize(compressor);
|
|
18916
18925
|
}
|
|
18917
18926
|
|
|
@@ -18930,9 +18939,9 @@ function inline_into_call(self, compressor) {
|
|
|
18930
18939
|
return self;
|
|
18931
18940
|
|
|
18932
18941
|
function return_value(stat) {
|
|
18933
|
-
if (!stat) return
|
|
18942
|
+
if (!stat) return make_void_0(self);
|
|
18934
18943
|
if (stat instanceof AST_Return) {
|
|
18935
|
-
if (!stat.value) return
|
|
18944
|
+
if (!stat.value) return make_void_0(self);
|
|
18936
18945
|
return stat.value.clone(true);
|
|
18937
18946
|
}
|
|
18938
18947
|
if (stat instanceof AST_SimpleStatement) {
|
|
@@ -19078,7 +19087,7 @@ function inline_into_call(self, compressor) {
|
|
|
19078
19087
|
} else {
|
|
19079
19088
|
var symbol = make_node(AST_SymbolVar, name, name);
|
|
19080
19089
|
name.definition().orig.push(symbol);
|
|
19081
|
-
if (!value && in_loop) value =
|
|
19090
|
+
if (!value && in_loop) value = make_void_0(self);
|
|
19082
19091
|
append_var(decls, expressions, symbol, value);
|
|
19083
19092
|
}
|
|
19084
19093
|
}
|
|
@@ -19105,7 +19114,7 @@ function inline_into_call(self, compressor) {
|
|
|
19105
19114
|
operator: "=",
|
|
19106
19115
|
logical: false,
|
|
19107
19116
|
left: sym,
|
|
19108
|
-
right:
|
|
19117
|
+
right: make_void_0(name),
|
|
19109
19118
|
}));
|
|
19110
19119
|
}
|
|
19111
19120
|
}
|
|
@@ -19602,7 +19611,7 @@ AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
|
|
19602
19611
|
set_flag(exp.expression, SQUEEZED);
|
|
19603
19612
|
self.args = [];
|
|
19604
19613
|
} else {
|
|
19605
|
-
return
|
|
19614
|
+
return make_void_0(self);
|
|
19606
19615
|
}
|
|
19607
19616
|
}
|
|
19608
19617
|
});
|
|
@@ -19630,12 +19639,7 @@ AST_Scope.DEFMETHOD("process_expression", function(insert, compressor) {
|
|
|
19630
19639
|
: make_node(AST_EmptyStatement, node);
|
|
19631
19640
|
}
|
|
19632
19641
|
return make_node(AST_SimpleStatement, node, {
|
|
19633
|
-
body: node.value ||
|
|
19634
|
-
operator: "void",
|
|
19635
|
-
expression: make_node(AST_Number, node, {
|
|
19636
|
-
value: 0
|
|
19637
|
-
})
|
|
19638
|
-
})
|
|
19642
|
+
body: node.value || make_void_0(node)
|
|
19639
19643
|
});
|
|
19640
19644
|
}
|
|
19641
19645
|
if (node instanceof AST_Class || node instanceof AST_Lambda && node !== self) {
|
|
@@ -20238,8 +20242,8 @@ def_optimize(AST_If, function(self, compressor) {
|
|
|
20238
20242
|
return make_node(self.body.CTOR, self, {
|
|
20239
20243
|
value: make_node(AST_Conditional, self, {
|
|
20240
20244
|
condition : self.condition,
|
|
20241
|
-
consequent : self.body.value ||
|
|
20242
|
-
alternative : self.alternative.value ||
|
|
20245
|
+
consequent : self.body.value || make_void_0(self.body),
|
|
20246
|
+
alternative : self.alternative.value || make_void_0(self.alternative),
|
|
20243
20247
|
}).transform(compressor)
|
|
20244
20248
|
}).optimize(compressor);
|
|
20245
20249
|
}
|
|
@@ -20792,7 +20796,7 @@ def_optimize(AST_Call, function(self, compressor) {
|
|
|
20792
20796
|
const value = condition.evaluate(compressor);
|
|
20793
20797
|
|
|
20794
20798
|
if (value === 1 || value === true) {
|
|
20795
|
-
return
|
|
20799
|
+
return make_void_0(self).optimize(compressor);
|
|
20796
20800
|
}
|
|
20797
20801
|
}
|
|
20798
20802
|
}
|
|
@@ -21154,6 +21158,10 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
|
|
21154
21158
|
) {
|
|
21155
21159
|
return make_sequence(self, [e, make_node(AST_True, self)]).optimize(compressor);
|
|
21156
21160
|
}
|
|
21161
|
+
// Short-circuit common `void 0`
|
|
21162
|
+
if (self.operator === "void" && e instanceof AST_Number && e.value === 0) {
|
|
21163
|
+
return unsafe_undefined_ref(self, compressor) || self;
|
|
21164
|
+
}
|
|
21157
21165
|
var seq = self.lift_sequences(compressor);
|
|
21158
21166
|
if (seq !== self) {
|
|
21159
21167
|
return seq;
|
|
@@ -21164,7 +21172,7 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
|
|
21164
21172
|
self.expression = e;
|
|
21165
21173
|
return self;
|
|
21166
21174
|
} else {
|
|
21167
|
-
return
|
|
21175
|
+
return make_void_0(self).optimize(compressor);
|
|
21168
21176
|
}
|
|
21169
21177
|
}
|
|
21170
21178
|
if (compressor.in_boolean_context()) {
|
|
@@ -21350,7 +21358,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
21350
21358
|
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
21351
21359
|
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
|
21352
21360
|
self.right = expr;
|
|
21353
|
-
self.left =
|
|
21361
|
+
self.left = make_void_0(self.left).optimize(compressor);
|
|
21354
21362
|
if (self.operator.length == 2) self.operator += "=";
|
|
21355
21363
|
}
|
|
21356
21364
|
} else if (compressor.option("typeofs")
|
|
@@ -21363,7 +21371,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
21363
21371
|
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
21364
21372
|
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
|
21365
21373
|
self.left = expr;
|
|
21366
|
-
self.right =
|
|
21374
|
+
self.right = make_void_0(self.right).optimize(compressor);
|
|
21367
21375
|
if (self.operator.length == 2) self.operator += "=";
|
|
21368
21376
|
}
|
|
21369
21377
|
} else if (self.left instanceof AST_SymbolRef
|
|
@@ -22004,7 +22012,8 @@ function is_atomic(lhs, self) {
|
|
|
22004
22012
|
return lhs instanceof AST_SymbolRef || lhs.TYPE === self.TYPE;
|
|
22005
22013
|
}
|
|
22006
22014
|
|
|
22007
|
-
|
|
22015
|
+
/** Apply the `unsafe_undefined` option: find a variable called `undefined` and turn `self` into a reference to it. */
|
|
22016
|
+
function unsafe_undefined_ref(self, compressor) {
|
|
22008
22017
|
if (compressor.option("unsafe_undefined")) {
|
|
22009
22018
|
var undef = find_variable(compressor, "undefined");
|
|
22010
22019
|
if (undef) {
|
|
@@ -22017,14 +22026,15 @@ def_optimize(AST_Undefined, function(self, compressor) {
|
|
|
22017
22026
|
return ref;
|
|
22018
22027
|
}
|
|
22019
22028
|
}
|
|
22029
|
+
return null;
|
|
22030
|
+
}
|
|
22031
|
+
|
|
22032
|
+
def_optimize(AST_Undefined, function(self, compressor) {
|
|
22033
|
+
var symbolref = unsafe_undefined_ref(self, compressor);
|
|
22034
|
+
if (symbolref) return symbolref;
|
|
22020
22035
|
var lhs = compressor.is_lhs();
|
|
22021
22036
|
if (lhs && is_atomic(lhs, self)) return self;
|
|
22022
|
-
return
|
|
22023
|
-
operator: "void",
|
|
22024
|
-
expression: make_node(AST_Number, self, {
|
|
22025
|
-
value: 0
|
|
22026
|
-
})
|
|
22027
|
-
});
|
|
22037
|
+
return make_void_0(self);
|
|
22028
22038
|
});
|
|
22029
22039
|
|
|
22030
22040
|
def_optimize(AST_Infinity, function(self, compressor) {
|
|
@@ -22711,7 +22721,7 @@ def_optimize(AST_Sub, function(self, compressor) {
|
|
|
22711
22721
|
}
|
|
22712
22722
|
}
|
|
22713
22723
|
if (retValue instanceof AST_Expansion) break FLATTEN;
|
|
22714
|
-
retValue = retValue instanceof AST_Hole ?
|
|
22724
|
+
retValue = retValue instanceof AST_Hole ? make_void_0(retValue) : retValue;
|
|
22715
22725
|
if (!flatten) values.unshift(retValue);
|
|
22716
22726
|
while (--i >= 0) {
|
|
22717
22727
|
var value = elements[i];
|
|
@@ -22750,7 +22760,7 @@ def_optimize(AST_Chain, function (self, compressor) {
|
|
|
22750
22760
|
if (parent instanceof AST_UnaryPrefix && parent.operator === "delete") {
|
|
22751
22761
|
return make_node_from_constant(0, self);
|
|
22752
22762
|
}
|
|
22753
|
-
return
|
|
22763
|
+
return make_void_0(self).optimize(compressor);
|
|
22754
22764
|
}
|
|
22755
22765
|
if (
|
|
22756
22766
|
self.expression instanceof AST_PropAccess
|
|
@@ -23498,6 +23508,7 @@ var domprops = [
|
|
|
23498
23508
|
"Array",
|
|
23499
23509
|
"ArrayBuffer",
|
|
23500
23510
|
"ArrayType",
|
|
23511
|
+
"AsyncDisposableStack",
|
|
23501
23512
|
"Atomics",
|
|
23502
23513
|
"Attr",
|
|
23503
23514
|
"Audio",
|
|
@@ -23636,6 +23647,7 @@ var domprops = [
|
|
|
23636
23647
|
"COPY_WRITE_BUFFER",
|
|
23637
23648
|
"COPY_WRITE_BUFFER_BINDING",
|
|
23638
23649
|
"COUNTER_STYLE_RULE",
|
|
23650
|
+
"CSPViolationReportBody",
|
|
23639
23651
|
"CSS",
|
|
23640
23652
|
"CSS2Properties",
|
|
23641
23653
|
"CSSAnimation",
|
|
@@ -23646,6 +23658,9 @@ var domprops = [
|
|
|
23646
23658
|
"CSSFontFaceRule",
|
|
23647
23659
|
"CSSFontFeatureValuesRule",
|
|
23648
23660
|
"CSSFontPaletteValuesRule",
|
|
23661
|
+
"CSSFunctionDeclarations",
|
|
23662
|
+
"CSSFunctionDescriptors",
|
|
23663
|
+
"CSSFunctionRule",
|
|
23649
23664
|
"CSSGroupingRule",
|
|
23650
23665
|
"CSSImageValue",
|
|
23651
23666
|
"CSSImportRule",
|
|
@@ -23689,6 +23704,7 @@ var domprops = [
|
|
|
23689
23704
|
"CSSSkewY",
|
|
23690
23705
|
"CSSStartingStyleRule",
|
|
23691
23706
|
"CSSStyleDeclaration",
|
|
23707
|
+
"CSSStyleProperties",
|
|
23692
23708
|
"CSSStyleRule",
|
|
23693
23709
|
"CSSStyleSheet",
|
|
23694
23710
|
"CSSStyleValue",
|
|
@@ -23822,6 +23838,7 @@ var domprops = [
|
|
|
23822
23838
|
"CookieStoreManager",
|
|
23823
23839
|
"CountQueuingStrategy",
|
|
23824
23840
|
"Counter",
|
|
23841
|
+
"CreateMonitor",
|
|
23825
23842
|
"CreateType",
|
|
23826
23843
|
"Credential",
|
|
23827
23844
|
"CredentialsContainer",
|
|
@@ -24331,11 +24348,14 @@ var domprops = [
|
|
|
24331
24348
|
"DeviceMotionEventAcceleration",
|
|
24332
24349
|
"DeviceMotionEventRotationRate",
|
|
24333
24350
|
"DeviceOrientationEvent",
|
|
24351
|
+
"DevicePosture",
|
|
24334
24352
|
"DeviceProximityEvent",
|
|
24335
24353
|
"DeviceStorage",
|
|
24336
24354
|
"DeviceStorageChangeEvent",
|
|
24355
|
+
"DigitalCredential",
|
|
24337
24356
|
"Directory",
|
|
24338
24357
|
"DisplayNames",
|
|
24358
|
+
"DisposableStack",
|
|
24339
24359
|
"Document",
|
|
24340
24360
|
"DocumentFragment",
|
|
24341
24361
|
"DocumentPictureInPicture",
|
|
@@ -24343,6 +24363,7 @@ var domprops = [
|
|
|
24343
24363
|
"DocumentTimeline",
|
|
24344
24364
|
"DocumentType",
|
|
24345
24365
|
"DragEvent",
|
|
24366
|
+
"Duration",
|
|
24346
24367
|
"DurationFormat",
|
|
24347
24368
|
"DynamicsCompressorNode",
|
|
24348
24369
|
"E",
|
|
@@ -24450,6 +24471,7 @@ var domprops = [
|
|
|
24450
24471
|
"FeedEntry",
|
|
24451
24472
|
"Fence",
|
|
24452
24473
|
"FencedFrameConfig",
|
|
24474
|
+
"FetchLaterResult",
|
|
24453
24475
|
"File",
|
|
24454
24476
|
"FileError",
|
|
24455
24477
|
"FileList",
|
|
@@ -24462,6 +24484,7 @@ var domprops = [
|
|
|
24462
24484
|
"FileSystemFileEntry",
|
|
24463
24485
|
"FileSystemFileHandle",
|
|
24464
24486
|
"FileSystemHandle",
|
|
24487
|
+
"FileSystemObserver",
|
|
24465
24488
|
"FileSystemWritableFileStream",
|
|
24466
24489
|
"FinalizationRegistry",
|
|
24467
24490
|
"FindInPage",
|
|
@@ -24627,6 +24650,7 @@ var domprops = [
|
|
|
24627
24650
|
"HTMLQuoteElement",
|
|
24628
24651
|
"HTMLScriptElement",
|
|
24629
24652
|
"HTMLSelectElement",
|
|
24653
|
+
"HTMLSelectedContentElement",
|
|
24630
24654
|
"HTMLShadowElement",
|
|
24631
24655
|
"HTMLSlotElement",
|
|
24632
24656
|
"HTMLSourceElement",
|
|
@@ -24671,6 +24695,7 @@ var domprops = [
|
|
|
24671
24695
|
"IDBMutableFile",
|
|
24672
24696
|
"IDBObjectStore",
|
|
24673
24697
|
"IDBOpenDBRequest",
|
|
24698
|
+
"IDBRecord",
|
|
24674
24699
|
"IDBRequest",
|
|
24675
24700
|
"IDBTransaction",
|
|
24676
24701
|
"IDBVersionChangeEvent",
|
|
@@ -24733,10 +24758,13 @@ var domprops = [
|
|
|
24733
24758
|
"InstallTrigger",
|
|
24734
24759
|
"InstallTriggerImpl",
|
|
24735
24760
|
"Instance",
|
|
24761
|
+
"Instant",
|
|
24736
24762
|
"Int16Array",
|
|
24737
24763
|
"Int32Array",
|
|
24738
24764
|
"Int8Array",
|
|
24765
|
+
"IntegrityViolationReportBody",
|
|
24739
24766
|
"Intent",
|
|
24767
|
+
"InterestEvent",
|
|
24740
24768
|
"InternalError",
|
|
24741
24769
|
"IntersectionObserver",
|
|
24742
24770
|
"IntersectionObserverEntry",
|
|
@@ -24786,6 +24814,7 @@ var domprops = [
|
|
|
24786
24814
|
"LUMINANCE",
|
|
24787
24815
|
"LUMINANCE_ALPHA",
|
|
24788
24816
|
"LanguageCode",
|
|
24817
|
+
"LanguageDetector",
|
|
24789
24818
|
"LargestContentfulPaint",
|
|
24790
24819
|
"LaunchParams",
|
|
24791
24820
|
"LaunchQueue",
|
|
@@ -25115,6 +25144,7 @@ var domprops = [
|
|
|
25115
25144
|
"NavigationCurrentEntryChangeEvent",
|
|
25116
25145
|
"NavigationDestination",
|
|
25117
25146
|
"NavigationHistoryEntry",
|
|
25147
|
+
"NavigationPrecommitController",
|
|
25118
25148
|
"NavigationPreloadManager",
|
|
25119
25149
|
"NavigationTransition",
|
|
25120
25150
|
"Navigator",
|
|
@@ -25132,6 +25162,7 @@ var domprops = [
|
|
|
25132
25162
|
"Notation",
|
|
25133
25163
|
"Notification",
|
|
25134
25164
|
"NotifyPaintEvent",
|
|
25165
|
+
"Now",
|
|
25135
25166
|
"Number",
|
|
25136
25167
|
"NumberFormat",
|
|
25137
25168
|
"OBJECT_TYPE",
|
|
@@ -25153,6 +25184,7 @@ var domprops = [
|
|
|
25153
25184
|
"OTPCredential",
|
|
25154
25185
|
"OUT_OF_MEMORY",
|
|
25155
25186
|
"Object",
|
|
25187
|
+
"Observable",
|
|
25156
25188
|
"OfflineAudioCompletionEvent",
|
|
25157
25189
|
"OfflineAudioContext",
|
|
25158
25190
|
"OfflineResourceList",
|
|
@@ -25254,6 +25286,11 @@ var domprops = [
|
|
|
25254
25286
|
"PhotoCapabilities",
|
|
25255
25287
|
"PictureInPictureEvent",
|
|
25256
25288
|
"PictureInPictureWindow",
|
|
25289
|
+
"PlainDate",
|
|
25290
|
+
"PlainDateTime",
|
|
25291
|
+
"PlainMonthDay",
|
|
25292
|
+
"PlainTime",
|
|
25293
|
+
"PlainYearMonth",
|
|
25257
25294
|
"PlatformArch",
|
|
25258
25295
|
"PlatformInfo",
|
|
25259
25296
|
"PlatformNaclArch",
|
|
@@ -25294,6 +25331,7 @@ var domprops = [
|
|
|
25294
25331
|
"QUOTA_ERR",
|
|
25295
25332
|
"QUOTA_EXCEEDED_ERR",
|
|
25296
25333
|
"QueryInterface",
|
|
25334
|
+
"QuotaExceededError",
|
|
25297
25335
|
"R11F_G11F_B10F",
|
|
25298
25336
|
"R16F",
|
|
25299
25337
|
"R16I",
|
|
@@ -25434,6 +25472,7 @@ var domprops = [
|
|
|
25434
25472
|
"ResizeObserverEntry",
|
|
25435
25473
|
"ResizeObserverSize",
|
|
25436
25474
|
"Response",
|
|
25475
|
+
"RestrictionTarget",
|
|
25437
25476
|
"RuntimeError",
|
|
25438
25477
|
"SAMPLER_2D",
|
|
25439
25478
|
"SAMPLER_2D_ARRAY",
|
|
@@ -25840,6 +25879,11 @@ var domprops = [
|
|
|
25840
25879
|
"ShadowRoot",
|
|
25841
25880
|
"SharedArrayBuffer",
|
|
25842
25881
|
"SharedStorage",
|
|
25882
|
+
"SharedStorageAppendMethod",
|
|
25883
|
+
"SharedStorageClearMethod",
|
|
25884
|
+
"SharedStorageDeleteMethod",
|
|
25885
|
+
"SharedStorageModifierMethod",
|
|
25886
|
+
"SharedStorageSetMethod",
|
|
25843
25887
|
"SharedStorageWorklet",
|
|
25844
25888
|
"SharedWorker",
|
|
25845
25889
|
"SharingState",
|
|
@@ -25847,6 +25891,12 @@ var domprops = [
|
|
|
25847
25891
|
"SnapEvent",
|
|
25848
25892
|
"SourceBuffer",
|
|
25849
25893
|
"SourceBufferList",
|
|
25894
|
+
"SpeechGrammar",
|
|
25895
|
+
"SpeechGrammarList",
|
|
25896
|
+
"SpeechRecognition",
|
|
25897
|
+
"SpeechRecognitionErrorEvent",
|
|
25898
|
+
"SpeechRecognitionEvent",
|
|
25899
|
+
"SpeechRecognitionPhrase",
|
|
25850
25900
|
"SpeechSynthesis",
|
|
25851
25901
|
"SpeechSynthesisErrorEvent",
|
|
25852
25902
|
"SpeechSynthesisEvent",
|
|
@@ -25867,7 +25917,12 @@ var domprops = [
|
|
|
25867
25917
|
"StyleSheet",
|
|
25868
25918
|
"StyleSheetList",
|
|
25869
25919
|
"SubmitEvent",
|
|
25920
|
+
"Subscriber",
|
|
25870
25921
|
"SubtleCrypto",
|
|
25922
|
+
"Summarizer",
|
|
25923
|
+
"SuppressedError",
|
|
25924
|
+
"SuspendError",
|
|
25925
|
+
"Suspending",
|
|
25871
25926
|
"Symbol",
|
|
25872
25927
|
"SyncManager",
|
|
25873
25928
|
"SyntaxError",
|
|
@@ -25978,6 +26033,7 @@ var domprops = [
|
|
|
25978
26033
|
"TaskController",
|
|
25979
26034
|
"TaskPriorityChangeEvent",
|
|
25980
26035
|
"TaskSignal",
|
|
26036
|
+
"Temporal",
|
|
25981
26037
|
"Text",
|
|
25982
26038
|
"TextDecoder",
|
|
25983
26039
|
"TextDecoderStream",
|
|
@@ -26002,6 +26058,7 @@ var domprops = [
|
|
|
26002
26058
|
"TransformStream",
|
|
26003
26059
|
"TransformStreamDefaultController",
|
|
26004
26060
|
"TransitionEvent",
|
|
26061
|
+
"Translator",
|
|
26005
26062
|
"TreeWalker",
|
|
26006
26063
|
"TrustedHTML",
|
|
26007
26064
|
"TrustedScript",
|
|
@@ -26146,6 +26203,7 @@ var domprops = [
|
|
|
26146
26203
|
"ViewTransition",
|
|
26147
26204
|
"ViewTransitionTypeSet",
|
|
26148
26205
|
"ViewType",
|
|
26206
|
+
"Viewport",
|
|
26149
26207
|
"VirtualKeyboard",
|
|
26150
26208
|
"VirtualKeyboardGeometryChangeEvent",
|
|
26151
26209
|
"VisibilityStateEntry",
|
|
@@ -26355,6 +26413,7 @@ var domprops = [
|
|
|
26355
26413
|
"XRWebGLLayer",
|
|
26356
26414
|
"XSLTProcessor",
|
|
26357
26415
|
"ZERO",
|
|
26416
|
+
"ZonedDateTime",
|
|
26358
26417
|
"ZoomSettings",
|
|
26359
26418
|
"ZoomSettingsMode",
|
|
26360
26419
|
"ZoomSettingsScope",
|
|
@@ -26404,6 +26463,7 @@ var domprops = [
|
|
|
26404
26463
|
"activeSourceCount",
|
|
26405
26464
|
"activeTexture",
|
|
26406
26465
|
"activeVRDisplays",
|
|
26466
|
+
"activeViewTransition",
|
|
26407
26467
|
"activityLog",
|
|
26408
26468
|
"actualBoundingBoxAscent",
|
|
26409
26469
|
"actualBoundingBoxDescent",
|
|
@@ -26411,6 +26471,7 @@ var domprops = [
|
|
|
26411
26471
|
"actualBoundingBoxRight",
|
|
26412
26472
|
"adAuctionComponents",
|
|
26413
26473
|
"adAuctionHeaders",
|
|
26474
|
+
"adapterInfo",
|
|
26414
26475
|
"add",
|
|
26415
26476
|
"addAll",
|
|
26416
26477
|
"addBehavior",
|
|
@@ -26436,6 +26497,7 @@ var domprops = [
|
|
|
26436
26497
|
"addSearchEngine",
|
|
26437
26498
|
"addSourceBuffer",
|
|
26438
26499
|
"addStream",
|
|
26500
|
+
"addTeardown",
|
|
26439
26501
|
"addTextTrack",
|
|
26440
26502
|
"addTrack",
|
|
26441
26503
|
"addTransceiver",
|
|
@@ -26450,6 +26512,7 @@ var domprops = [
|
|
|
26450
26512
|
"addressModeU",
|
|
26451
26513
|
"addressModeV",
|
|
26452
26514
|
"addressModeW",
|
|
26515
|
+
"adopt",
|
|
26453
26516
|
"adoptNode",
|
|
26454
26517
|
"adoptedCallback",
|
|
26455
26518
|
"adoptedStyleSheets",
|
|
@@ -26497,8 +26560,10 @@ var domprops = [
|
|
|
26497
26560
|
"amplitude",
|
|
26498
26561
|
"ancestorOrigins",
|
|
26499
26562
|
"anchor",
|
|
26563
|
+
"anchorName",
|
|
26500
26564
|
"anchorNode",
|
|
26501
26565
|
"anchorOffset",
|
|
26566
|
+
"anchorScope",
|
|
26502
26567
|
"anchorSpace",
|
|
26503
26568
|
"anchors",
|
|
26504
26569
|
"and",
|
|
@@ -26534,6 +26599,7 @@ var domprops = [
|
|
|
26534
26599
|
"animationTimingFunction",
|
|
26535
26600
|
"animationsPaused",
|
|
26536
26601
|
"anniversary",
|
|
26602
|
+
"annotation",
|
|
26537
26603
|
"antialias",
|
|
26538
26604
|
"anticipatedRemoval",
|
|
26539
26605
|
"any",
|
|
@@ -26568,6 +26634,7 @@ var domprops = [
|
|
|
26568
26634
|
"archive",
|
|
26569
26635
|
"areas",
|
|
26570
26636
|
"arguments",
|
|
26637
|
+
"ariaActiveDescendantElement",
|
|
26571
26638
|
"ariaAtomic",
|
|
26572
26639
|
"ariaAutoComplete",
|
|
26573
26640
|
"ariaBrailleLabel",
|
|
@@ -26578,21 +26645,29 @@ var domprops = [
|
|
|
26578
26645
|
"ariaColIndex",
|
|
26579
26646
|
"ariaColIndexText",
|
|
26580
26647
|
"ariaColSpan",
|
|
26648
|
+
"ariaControlsElements",
|
|
26581
26649
|
"ariaCurrent",
|
|
26650
|
+
"ariaDescribedByElements",
|
|
26582
26651
|
"ariaDescription",
|
|
26652
|
+
"ariaDetailsElements",
|
|
26583
26653
|
"ariaDisabled",
|
|
26654
|
+
"ariaErrorMessageElements",
|
|
26584
26655
|
"ariaExpanded",
|
|
26656
|
+
"ariaFlowToElements",
|
|
26585
26657
|
"ariaHasPopup",
|
|
26586
26658
|
"ariaHidden",
|
|
26587
26659
|
"ariaInvalid",
|
|
26588
26660
|
"ariaKeyShortcuts",
|
|
26589
26661
|
"ariaLabel",
|
|
26662
|
+
"ariaLabelledByElements",
|
|
26590
26663
|
"ariaLevel",
|
|
26591
26664
|
"ariaLive",
|
|
26592
26665
|
"ariaModal",
|
|
26593
26666
|
"ariaMultiLine",
|
|
26594
26667
|
"ariaMultiSelectable",
|
|
26668
|
+
"ariaNotify",
|
|
26595
26669
|
"ariaOrientation",
|
|
26670
|
+
"ariaOwnsElements",
|
|
26596
26671
|
"ariaPlaceholder",
|
|
26597
26672
|
"ariaPosInSet",
|
|
26598
26673
|
"ariaPressed",
|
|
@@ -26735,6 +26810,7 @@ var domprops = [
|
|
|
26735
26810
|
"baseline-source",
|
|
26736
26811
|
"baselineShift",
|
|
26737
26812
|
"baselineSource",
|
|
26813
|
+
"batchUpdate",
|
|
26738
26814
|
"battery",
|
|
26739
26815
|
"bday",
|
|
26740
26816
|
"before",
|
|
@@ -26787,6 +26863,7 @@ var domprops = [
|
|
|
26787
26863
|
"blockDirection",
|
|
26788
26864
|
"blockSize",
|
|
26789
26865
|
"blockedURI",
|
|
26866
|
+
"blockedURL",
|
|
26790
26867
|
"blocking",
|
|
26791
26868
|
"blockingDuration",
|
|
26792
26869
|
"blue",
|
|
@@ -26797,6 +26874,7 @@ var domprops = [
|
|
|
26797
26874
|
"bold",
|
|
26798
26875
|
"bookmarks",
|
|
26799
26876
|
"booleanValue",
|
|
26877
|
+
"boost",
|
|
26800
26878
|
"border",
|
|
26801
26879
|
"border-block",
|
|
26802
26880
|
"border-block-color",
|
|
@@ -27062,6 +27140,7 @@ var domprops = [
|
|
|
27062
27140
|
"characterData",
|
|
27063
27141
|
"characterDataOldValue",
|
|
27064
27142
|
"characterSet",
|
|
27143
|
+
"characterVariant",
|
|
27065
27144
|
"characteristic",
|
|
27066
27145
|
"charging",
|
|
27067
27146
|
"chargingTime",
|
|
@@ -27148,6 +27227,7 @@ var domprops = [
|
|
|
27148
27227
|
"closeCode",
|
|
27149
27228
|
"closePath",
|
|
27150
27229
|
"closed",
|
|
27230
|
+
"closedBy",
|
|
27151
27231
|
"closest",
|
|
27152
27232
|
"clz",
|
|
27153
27233
|
"clz32",
|
|
@@ -27205,11 +27285,13 @@ var domprops = [
|
|
|
27205
27285
|
"columnWidth",
|
|
27206
27286
|
"columns",
|
|
27207
27287
|
"command",
|
|
27288
|
+
"commandForElement",
|
|
27208
27289
|
"commands",
|
|
27209
27290
|
"commit",
|
|
27210
27291
|
"commitLoadTime",
|
|
27211
27292
|
"commitPreferences",
|
|
27212
27293
|
"commitStyles",
|
|
27294
|
+
"committed",
|
|
27213
27295
|
"commonAncestorContainer",
|
|
27214
27296
|
"compact",
|
|
27215
27297
|
"compare",
|
|
@@ -27245,6 +27327,7 @@ var domprops = [
|
|
|
27245
27327
|
"coneOuterAngle",
|
|
27246
27328
|
"coneOuterGain",
|
|
27247
27329
|
"config",
|
|
27330
|
+
"configURL",
|
|
27248
27331
|
"configurable",
|
|
27249
27332
|
"configuration",
|
|
27250
27333
|
"configurationName",
|
|
@@ -27263,6 +27346,7 @@ var domprops = [
|
|
|
27263
27346
|
"connectStart",
|
|
27264
27347
|
"connected",
|
|
27265
27348
|
"connectedCallback",
|
|
27349
|
+
"connectedMoveCallback",
|
|
27266
27350
|
"connection",
|
|
27267
27351
|
"connectionInfo",
|
|
27268
27352
|
"connectionList",
|
|
@@ -27303,6 +27387,7 @@ var domprops = [
|
|
|
27303
27387
|
"contentBoxSize",
|
|
27304
27388
|
"contentDocument",
|
|
27305
27389
|
"contentEditable",
|
|
27390
|
+
"contentEncoding",
|
|
27306
27391
|
"contentHint",
|
|
27307
27392
|
"contentOverflow",
|
|
27308
27393
|
"contentRect",
|
|
@@ -27583,6 +27668,7 @@ var domprops = [
|
|
|
27583
27668
|
"decodedBodySize",
|
|
27584
27669
|
"decoding",
|
|
27585
27670
|
"decodingInfo",
|
|
27671
|
+
"decreaseZoomLevel",
|
|
27586
27672
|
"decrypt",
|
|
27587
27673
|
"default",
|
|
27588
27674
|
"defaultCharset",
|
|
@@ -27653,6 +27739,7 @@ var domprops = [
|
|
|
27653
27739
|
"deprecatedReplaceInURN",
|
|
27654
27740
|
"deprecatedRunAdAuctionEnforcesKAnonymity",
|
|
27655
27741
|
"deprecatedURNToURL",
|
|
27742
|
+
"depthActive",
|
|
27656
27743
|
"depthBias",
|
|
27657
27744
|
"depthBiasClamp",
|
|
27658
27745
|
"depthBiasSlopeScale",
|
|
@@ -27672,6 +27759,7 @@ var domprops = [
|
|
|
27672
27759
|
"depthStencilAttachment",
|
|
27673
27760
|
"depthStencilFormat",
|
|
27674
27761
|
"depthStoreOp",
|
|
27762
|
+
"depthType",
|
|
27675
27763
|
"depthUsage",
|
|
27676
27764
|
"depthWriteEnabled",
|
|
27677
27765
|
"deref",
|
|
@@ -27700,6 +27788,7 @@ var domprops = [
|
|
|
27700
27788
|
"deviceMemory",
|
|
27701
27789
|
"devicePixelContentBoxSize",
|
|
27702
27790
|
"devicePixelRatio",
|
|
27791
|
+
"devicePosture",
|
|
27703
27792
|
"deviceProtocol",
|
|
27704
27793
|
"deviceSubclass",
|
|
27705
27794
|
"deviceVersionMajor",
|
|
@@ -27739,6 +27828,8 @@ var domprops = [
|
|
|
27739
27828
|
"displayName",
|
|
27740
27829
|
"displayWidth",
|
|
27741
27830
|
"dispose",
|
|
27831
|
+
"disposeAsync",
|
|
27832
|
+
"disposed",
|
|
27742
27833
|
"disposition",
|
|
27743
27834
|
"distanceModel",
|
|
27744
27835
|
"div",
|
|
@@ -27760,6 +27851,7 @@ var domprops = [
|
|
|
27760
27851
|
"documentOrigins",
|
|
27761
27852
|
"documentPictureInPicture",
|
|
27762
27853
|
"documentURI",
|
|
27854
|
+
"documentURL",
|
|
27763
27855
|
"documentUrl",
|
|
27764
27856
|
"documentUrls",
|
|
27765
27857
|
"dolphin",
|
|
@@ -27946,7 +28038,9 @@ var domprops = [
|
|
|
27946
28038
|
"expandEntityReferences",
|
|
27947
28039
|
"expando",
|
|
27948
28040
|
"expansion",
|
|
28041
|
+
"expectedContextLanguages",
|
|
27949
28042
|
"expectedImprovement",
|
|
28043
|
+
"expectedInputLanguages",
|
|
27950
28044
|
"experiments",
|
|
27951
28045
|
"expiration",
|
|
27952
28046
|
"expirationTime",
|
|
@@ -27989,6 +28083,7 @@ var domprops = [
|
|
|
27989
28083
|
"fence",
|
|
27990
28084
|
"fenceSync",
|
|
27991
28085
|
"fetch",
|
|
28086
|
+
"fetchLater",
|
|
27992
28087
|
"fetchPriority",
|
|
27993
28088
|
"fetchStart",
|
|
27994
28089
|
"fftSize",
|
|
@@ -28020,6 +28115,7 @@ var domprops = [
|
|
|
28020
28115
|
"filterResY",
|
|
28021
28116
|
"filterUnits",
|
|
28022
28117
|
"filters",
|
|
28118
|
+
"finalResponseHeadersStart",
|
|
28023
28119
|
"finally",
|
|
28024
28120
|
"find",
|
|
28025
28121
|
"findIndex",
|
|
@@ -28033,6 +28129,7 @@ var domprops = [
|
|
|
28033
28129
|
"finished",
|
|
28034
28130
|
"fireEvent",
|
|
28035
28131
|
"firesTouchEvents",
|
|
28132
|
+
"first",
|
|
28036
28133
|
"firstChild",
|
|
28037
28134
|
"firstElementChild",
|
|
28038
28135
|
"firstInterimResponseStart",
|
|
@@ -28057,6 +28154,7 @@ var domprops = [
|
|
|
28057
28154
|
"flexGrow",
|
|
28058
28155
|
"flexShrink",
|
|
28059
28156
|
"flexWrap",
|
|
28157
|
+
"flip",
|
|
28060
28158
|
"flipX",
|
|
28061
28159
|
"flipY",
|
|
28062
28160
|
"float",
|
|
@@ -28118,6 +28216,7 @@ var domprops = [
|
|
|
28118
28216
|
"fontVariantAlternates",
|
|
28119
28217
|
"fontVariantCaps",
|
|
28120
28218
|
"fontVariantEastAsian",
|
|
28219
|
+
"fontVariantEmoji",
|
|
28121
28220
|
"fontVariantLigatures",
|
|
28122
28221
|
"fontVariantNumeric",
|
|
28123
28222
|
"fontVariantPosition",
|
|
@@ -28147,6 +28246,7 @@ var domprops = [
|
|
|
28147
28246
|
"formatToParts",
|
|
28148
28247
|
"forms",
|
|
28149
28248
|
"forward",
|
|
28249
|
+
"forwardWheel",
|
|
28150
28250
|
"forwardX",
|
|
28151
28251
|
"forwardY",
|
|
28152
28252
|
"forwardZ",
|
|
@@ -28223,6 +28323,7 @@ var domprops = [
|
|
|
28223
28323
|
"getAdjacentText",
|
|
28224
28324
|
"getAll",
|
|
28225
28325
|
"getAllKeys",
|
|
28326
|
+
"getAllRecords",
|
|
28226
28327
|
"getAllResponseHeaders",
|
|
28227
28328
|
"getAllowlistForFeature",
|
|
28228
28329
|
"getAnimations",
|
|
@@ -28271,11 +28372,13 @@ var domprops = [
|
|
|
28271
28372
|
"getCharNumAtPosition",
|
|
28272
28373
|
"getCharacteristic",
|
|
28273
28374
|
"getCharacteristics",
|
|
28375
|
+
"getClientCapabilities",
|
|
28274
28376
|
"getClientExtensionResults",
|
|
28275
28377
|
"getClientRect",
|
|
28276
28378
|
"getClientRects",
|
|
28277
28379
|
"getCoalescedEvents",
|
|
28278
28380
|
"getCompilationInfo",
|
|
28381
|
+
"getComposedRanges",
|
|
28279
28382
|
"getCompositionAlternatives",
|
|
28280
28383
|
"getComputedStyle",
|
|
28281
28384
|
"getComputedTextLength",
|
|
@@ -28399,6 +28502,8 @@ var domprops = [
|
|
|
28399
28502
|
"getNotifier",
|
|
28400
28503
|
"getNumberOfChars",
|
|
28401
28504
|
"getOffsetReferenceSpace",
|
|
28505
|
+
"getOrInsert",
|
|
28506
|
+
"getOrInsertComputed",
|
|
28402
28507
|
"getOutputTimestamp",
|
|
28403
28508
|
"getOverrideHistoryNavigationMode",
|
|
28404
28509
|
"getOverrideStyle",
|
|
@@ -28410,7 +28515,9 @@ var domprops = [
|
|
|
28410
28515
|
"getParameter",
|
|
28411
28516
|
"getParameters",
|
|
28412
28517
|
"getParent",
|
|
28518
|
+
"getPathData",
|
|
28413
28519
|
"getPathSegAtLength",
|
|
28520
|
+
"getPathSegmentAtLength",
|
|
28414
28521
|
"getPermissionWarningsByManifest",
|
|
28415
28522
|
"getPhotoCapabilities",
|
|
28416
28523
|
"getPhotoSettings",
|
|
@@ -28492,6 +28599,7 @@ var domprops = [
|
|
|
28492
28599
|
"getSupportedConstraints",
|
|
28493
28600
|
"getSupportedExtensions",
|
|
28494
28601
|
"getSupportedFormats",
|
|
28602
|
+
"getSupportedZoomLevels",
|
|
28495
28603
|
"getSyncParameter",
|
|
28496
28604
|
"getSynchronizationSources",
|
|
28497
28605
|
"getTags",
|
|
@@ -28664,6 +28772,7 @@ var domprops = [
|
|
|
28664
28772
|
"highWaterMark",
|
|
28665
28773
|
"highlight",
|
|
28666
28774
|
"highlights",
|
|
28775
|
+
"highlightsFromPoint",
|
|
28667
28776
|
"hint",
|
|
28668
28777
|
"hints",
|
|
28669
28778
|
"history",
|
|
@@ -28685,6 +28794,7 @@ var domprops = [
|
|
|
28685
28794
|
"hwTimestamp",
|
|
28686
28795
|
"hyphenate-character",
|
|
28687
28796
|
"hyphenateCharacter",
|
|
28797
|
+
"hyphenateLimitChars",
|
|
28688
28798
|
"hyphens",
|
|
28689
28799
|
"hypot",
|
|
28690
28800
|
"i18n",
|
|
@@ -28738,6 +28848,7 @@ var domprops = [
|
|
|
28738
28848
|
"incomingHighWaterMark",
|
|
28739
28849
|
"incomingMaxAge",
|
|
28740
28850
|
"incomingUnidirectionalStreams",
|
|
28851
|
+
"increaseZoomLevel",
|
|
28741
28852
|
"incremental",
|
|
28742
28853
|
"indeterminate",
|
|
28743
28854
|
"index",
|
|
@@ -28815,6 +28926,7 @@ var domprops = [
|
|
|
28815
28926
|
"inputEncoding",
|
|
28816
28927
|
"inputMethod",
|
|
28817
28928
|
"inputMode",
|
|
28929
|
+
"inputQuota",
|
|
28818
28930
|
"inputSource",
|
|
28819
28931
|
"inputSources",
|
|
28820
28932
|
"inputType",
|
|
@@ -28844,6 +28956,7 @@ var domprops = [
|
|
|
28844
28956
|
"insetInline",
|
|
28845
28957
|
"insetInlineEnd",
|
|
28846
28958
|
"insetInlineStart",
|
|
28959
|
+
"inspect",
|
|
28847
28960
|
"install",
|
|
28848
28961
|
"installing",
|
|
28849
28962
|
"instanceRoot",
|
|
@@ -28854,9 +28967,11 @@ var domprops = [
|
|
|
28854
28967
|
"int32",
|
|
28855
28968
|
"int8",
|
|
28856
28969
|
"integrity",
|
|
28970
|
+
"interactionCount",
|
|
28857
28971
|
"interactionId",
|
|
28858
28972
|
"interactionMode",
|
|
28859
28973
|
"intercept",
|
|
28974
|
+
"interestForElement",
|
|
28860
28975
|
"interfaceClass",
|
|
28861
28976
|
"interfaceName",
|
|
28862
28977
|
"interfaceNumber",
|
|
@@ -28906,6 +29021,7 @@ var domprops = [
|
|
|
28906
29021
|
"isEnabled",
|
|
28907
29022
|
"isEqual",
|
|
28908
29023
|
"isEqualNode",
|
|
29024
|
+
"isError",
|
|
28909
29025
|
"isExtended",
|
|
28910
29026
|
"isExtensible",
|
|
28911
29027
|
"isExternalCTAP2SecurityKeySupported",
|
|
@@ -29029,6 +29145,7 @@ var domprops = [
|
|
|
29029
29145
|
"language",
|
|
29030
29146
|
"languages",
|
|
29031
29147
|
"largeArcFlag",
|
|
29148
|
+
"last",
|
|
29032
29149
|
"lastChild",
|
|
29033
29150
|
"lastElementChild",
|
|
29034
29151
|
"lastError",
|
|
@@ -29261,6 +29378,7 @@ var domprops = [
|
|
|
29261
29378
|
"math-depth",
|
|
29262
29379
|
"math-style",
|
|
29263
29380
|
"mathDepth",
|
|
29381
|
+
"mathShift",
|
|
29264
29382
|
"mathStyle",
|
|
29265
29383
|
"matrix",
|
|
29266
29384
|
"matrixTransform",
|
|
@@ -29323,6 +29441,7 @@ var domprops = [
|
|
|
29323
29441
|
"maxWidth",
|
|
29324
29442
|
"maximumLatency",
|
|
29325
29443
|
"measure",
|
|
29444
|
+
"measureInputUsage",
|
|
29326
29445
|
"measureText",
|
|
29327
29446
|
"media",
|
|
29328
29447
|
"mediaCapabilities",
|
|
@@ -29384,6 +29503,7 @@ var domprops = [
|
|
|
29384
29503
|
"module",
|
|
29385
29504
|
"mount",
|
|
29386
29505
|
"move",
|
|
29506
|
+
"moveBefore",
|
|
29387
29507
|
"moveBy",
|
|
29388
29508
|
"moveEnd",
|
|
29389
29509
|
"moveFirst",
|
|
@@ -29727,6 +29847,7 @@ var domprops = [
|
|
|
29727
29847
|
"objectStoreNames",
|
|
29728
29848
|
"objectType",
|
|
29729
29849
|
"observe",
|
|
29850
|
+
"observedAttributes",
|
|
29730
29851
|
"occlusionQuerySet",
|
|
29731
29852
|
"of",
|
|
29732
29853
|
"off",
|
|
@@ -29857,6 +29978,7 @@ var domprops = [
|
|
|
29857
29978
|
"onclick",
|
|
29858
29979
|
"onclose",
|
|
29859
29980
|
"onclosing",
|
|
29981
|
+
"oncommand",
|
|
29860
29982
|
"oncompassneedscalibration",
|
|
29861
29983
|
"oncomplete",
|
|
29862
29984
|
"oncompositionend",
|
|
@@ -29894,6 +30016,7 @@ var domprops = [
|
|
|
29894
30016
|
"ondisplay",
|
|
29895
30017
|
"ondispose",
|
|
29896
30018
|
"ondownloading",
|
|
30019
|
+
"ondownloadprogress",
|
|
29897
30020
|
"ondrag",
|
|
29898
30021
|
"ondragend",
|
|
29899
30022
|
"ondragenter",
|
|
@@ -30170,6 +30293,7 @@ var domprops = [
|
|
|
30170
30293
|
"onwebkittransitionend",
|
|
30171
30294
|
"onwheel",
|
|
30172
30295
|
"onzoom",
|
|
30296
|
+
"onzoomlevelchange",
|
|
30173
30297
|
"opacity",
|
|
30174
30298
|
"open",
|
|
30175
30299
|
"openCursor",
|
|
@@ -30205,6 +30329,7 @@ var domprops = [
|
|
|
30205
30329
|
"originAgentCluster",
|
|
30206
30330
|
"originalPolicy",
|
|
30207
30331
|
"originalTarget",
|
|
30332
|
+
"ornaments",
|
|
30208
30333
|
"orphans",
|
|
30209
30334
|
"os",
|
|
30210
30335
|
"oscpu",
|
|
@@ -30225,8 +30350,10 @@ var domprops = [
|
|
|
30225
30350
|
"outlineWidth",
|
|
30226
30351
|
"outputBuffer",
|
|
30227
30352
|
"outputChannelCount",
|
|
30353
|
+
"outputLanguage",
|
|
30228
30354
|
"outputLatency",
|
|
30229
30355
|
"outputs",
|
|
30356
|
+
"overallProgress",
|
|
30230
30357
|
"overflow",
|
|
30231
30358
|
"overflow-anchor",
|
|
30232
30359
|
"overflow-block",
|
|
@@ -30315,6 +30442,7 @@ var domprops = [
|
|
|
30315
30442
|
"paint-order",
|
|
30316
30443
|
"paintOrder",
|
|
30317
30444
|
"paintRequests",
|
|
30445
|
+
"paintTime",
|
|
30318
30446
|
"paintType",
|
|
30319
30447
|
"paintWorklet",
|
|
30320
30448
|
"palette",
|
|
@@ -30356,6 +30484,7 @@ var domprops = [
|
|
|
30356
30484
|
"patternUnits",
|
|
30357
30485
|
"pause",
|
|
30358
30486
|
"pauseAnimations",
|
|
30487
|
+
"pauseDepthSensing",
|
|
30359
30488
|
"pauseDuration",
|
|
30360
30489
|
"pauseOnExit",
|
|
30361
30490
|
"pauseProfilers",
|
|
@@ -30388,6 +30517,8 @@ var domprops = [
|
|
|
30388
30517
|
"phoneticFamilyName",
|
|
30389
30518
|
"phoneticGivenName",
|
|
30390
30519
|
"photo",
|
|
30520
|
+
"phrase",
|
|
30521
|
+
"phrases",
|
|
30391
30522
|
"pictureInPictureChild",
|
|
30392
30523
|
"pictureInPictureElement",
|
|
30393
30524
|
"pictureInPictureEnabled",
|
|
@@ -30398,6 +30529,7 @@ var domprops = [
|
|
|
30398
30529
|
"pitch",
|
|
30399
30530
|
"pixelBottom",
|
|
30400
30531
|
"pixelDepth",
|
|
30532
|
+
"pixelFormat",
|
|
30401
30533
|
"pixelHeight",
|
|
30402
30534
|
"pixelLeft",
|
|
30403
30535
|
"pixelRight",
|
|
@@ -30468,6 +30600,9 @@ var domprops = [
|
|
|
30468
30600
|
"positionAlign",
|
|
30469
30601
|
"positionAnchor",
|
|
30470
30602
|
"positionArea",
|
|
30603
|
+
"positionTry",
|
|
30604
|
+
"positionTryFallbacks",
|
|
30605
|
+
"positionVisibility",
|
|
30471
30606
|
"positionX",
|
|
30472
30607
|
"positionY",
|
|
30473
30608
|
"positionZ",
|
|
@@ -30494,6 +30629,7 @@ var domprops = [
|
|
|
30494
30629
|
"presentation",
|
|
30495
30630
|
"presentationArea",
|
|
30496
30631
|
"presentationStyle",
|
|
30632
|
+
"presentationTime",
|
|
30497
30633
|
"preserveAlpha",
|
|
30498
30634
|
"preserveAspectRatio",
|
|
30499
30635
|
"preserveAspectRatioString",
|
|
@@ -30532,6 +30668,7 @@ var domprops = [
|
|
|
30532
30668
|
"probeSpace",
|
|
30533
30669
|
"process",
|
|
30534
30670
|
"processIceMessage",
|
|
30671
|
+
"processLocally",
|
|
30535
30672
|
"processingEnd",
|
|
30536
30673
|
"processingStart",
|
|
30537
30674
|
"processorOptions",
|
|
@@ -30544,6 +30681,7 @@ var domprops = [
|
|
|
30544
30681
|
"profiles",
|
|
30545
30682
|
"projectionMatrix",
|
|
30546
30683
|
"promise",
|
|
30684
|
+
"promising",
|
|
30547
30685
|
"prompt",
|
|
30548
30686
|
"properties",
|
|
30549
30687
|
"propertyIsEnumerable",
|
|
@@ -30588,6 +30726,7 @@ var domprops = [
|
|
|
30588
30726
|
"querySet",
|
|
30589
30727
|
"queue",
|
|
30590
30728
|
"queueMicrotask",
|
|
30729
|
+
"quota",
|
|
30591
30730
|
"quote",
|
|
30592
30731
|
"quotes",
|
|
30593
30732
|
"r",
|
|
@@ -30766,6 +30905,7 @@ var domprops = [
|
|
|
30766
30905
|
"reportError",
|
|
30767
30906
|
"reportEvent",
|
|
30768
30907
|
"reportId",
|
|
30908
|
+
"reportOnly",
|
|
30769
30909
|
"reportValidity",
|
|
30770
30910
|
"request",
|
|
30771
30911
|
"requestAdapter",
|
|
@@ -30801,6 +30941,7 @@ var domprops = [
|
|
|
30801
30941
|
"requestVideoFrameCallback",
|
|
30802
30942
|
"requestViewportScale",
|
|
30803
30943
|
"requestWindow",
|
|
30944
|
+
"requested",
|
|
30804
30945
|
"requestingWindow",
|
|
30805
30946
|
"requireInteraction",
|
|
30806
30947
|
"required",
|
|
@@ -30811,6 +30952,7 @@ var domprops = [
|
|
|
30811
30952
|
"resetLatency",
|
|
30812
30953
|
"resetPose",
|
|
30813
30954
|
"resetTransform",
|
|
30955
|
+
"resetZoomLevel",
|
|
30814
30956
|
"resizable",
|
|
30815
30957
|
"resize",
|
|
30816
30958
|
"resizeBy",
|
|
@@ -30835,14 +30977,17 @@ var domprops = [
|
|
|
30835
30977
|
"restartAfterDelay",
|
|
30836
30978
|
"restartIce",
|
|
30837
30979
|
"restore",
|
|
30980
|
+
"restrictTo",
|
|
30838
30981
|
"result",
|
|
30839
30982
|
"resultIndex",
|
|
30840
30983
|
"resultType",
|
|
30841
30984
|
"results",
|
|
30842
30985
|
"resume",
|
|
30986
|
+
"resumeDepthSensing",
|
|
30843
30987
|
"resumeProfilers",
|
|
30844
30988
|
"resumeTransformFeedback",
|
|
30845
30989
|
"retry",
|
|
30990
|
+
"returnType",
|
|
30846
30991
|
"returnValue",
|
|
30847
30992
|
"rev",
|
|
30848
30993
|
"reverse",
|
|
@@ -31041,12 +31186,14 @@ var domprops = [
|
|
|
31041
31186
|
"searchParams",
|
|
31042
31187
|
"sectionRowIndex",
|
|
31043
31188
|
"secureConnectionStart",
|
|
31189
|
+
"securePaymentConfirmationAvailability",
|
|
31044
31190
|
"security",
|
|
31045
31191
|
"seed",
|
|
31046
31192
|
"seek",
|
|
31047
31193
|
"seekToNextFrame",
|
|
31048
31194
|
"seekable",
|
|
31049
31195
|
"seeking",
|
|
31196
|
+
"segments",
|
|
31050
31197
|
"select",
|
|
31051
31198
|
"selectAllChildren",
|
|
31052
31199
|
"selectAlternateInterface",
|
|
@@ -31181,6 +31328,7 @@ var domprops = [
|
|
|
31181
31328
|
"setPaint",
|
|
31182
31329
|
"setParameter",
|
|
31183
31330
|
"setParameters",
|
|
31331
|
+
"setPathData",
|
|
31184
31332
|
"setPeriodicWave",
|
|
31185
31333
|
"setPipeline",
|
|
31186
31334
|
"setPointerCapture",
|
|
@@ -31279,6 +31427,7 @@ var domprops = [
|
|
|
31279
31427
|
"shapeOutside",
|
|
31280
31428
|
"shapeRendering",
|
|
31281
31429
|
"share",
|
|
31430
|
+
"sharedContext",
|
|
31282
31431
|
"sharedStorage",
|
|
31283
31432
|
"sharedStorageWritable",
|
|
31284
31433
|
"sheet",
|
|
@@ -31303,6 +31452,9 @@ var domprops = [
|
|
|
31303
31452
|
"sidebarAction",
|
|
31304
31453
|
"sign",
|
|
31305
31454
|
"signal",
|
|
31455
|
+
"signalAllAcceptedCredentials",
|
|
31456
|
+
"signalCurrentUserDetails",
|
|
31457
|
+
"signalUnknownCredential",
|
|
31306
31458
|
"signalingState",
|
|
31307
31459
|
"signature",
|
|
31308
31460
|
"silent",
|
|
@@ -31344,9 +31496,11 @@ var domprops = [
|
|
|
31344
31496
|
"sourceBuffers",
|
|
31345
31497
|
"sourceCapabilities",
|
|
31346
31498
|
"sourceCharPosition",
|
|
31499
|
+
"sourceElement",
|
|
31347
31500
|
"sourceFile",
|
|
31348
31501
|
"sourceFunctionName",
|
|
31349
31502
|
"sourceIndex",
|
|
31503
|
+
"sourceLanguage",
|
|
31350
31504
|
"sourceMap",
|
|
31351
31505
|
"sourceURL",
|
|
31352
31506
|
"sources",
|
|
@@ -31487,8 +31641,12 @@ var domprops = [
|
|
|
31487
31641
|
"styleSheet",
|
|
31488
31642
|
"styleSheetSets",
|
|
31489
31643
|
"styleSheets",
|
|
31644
|
+
"styleset",
|
|
31645
|
+
"stylistic",
|
|
31490
31646
|
"sub",
|
|
31491
31647
|
"subarray",
|
|
31648
|
+
"subgroupMaxSize",
|
|
31649
|
+
"subgroupMinSize",
|
|
31492
31650
|
"subject",
|
|
31493
31651
|
"submit",
|
|
31494
31652
|
"submitFrame",
|
|
@@ -31501,6 +31659,9 @@ var domprops = [
|
|
|
31501
31659
|
"subtree",
|
|
31502
31660
|
"suffix",
|
|
31503
31661
|
"suffixes",
|
|
31662
|
+
"sumPrecise",
|
|
31663
|
+
"summarize",
|
|
31664
|
+
"summarizeStreaming",
|
|
31504
31665
|
"summary",
|
|
31505
31666
|
"sup",
|
|
31506
31667
|
"supported",
|
|
@@ -31511,6 +31672,7 @@ var domprops = [
|
|
|
31511
31672
|
"supportsFiber",
|
|
31512
31673
|
"supportsSession",
|
|
31513
31674
|
"supportsText",
|
|
31675
|
+
"suppressed",
|
|
31514
31676
|
"surfaceScale",
|
|
31515
31677
|
"surroundContents",
|
|
31516
31678
|
"suspend",
|
|
@@ -31523,7 +31685,9 @@ var domprops = [
|
|
|
31523
31685
|
"svw",
|
|
31524
31686
|
"swapCache",
|
|
31525
31687
|
"swapNode",
|
|
31688
|
+
"swash",
|
|
31526
31689
|
"sweepFlag",
|
|
31690
|
+
"switchMap",
|
|
31527
31691
|
"symbols",
|
|
31528
31692
|
"symmetricDifference",
|
|
31529
31693
|
"sync",
|
|
@@ -31557,12 +31721,14 @@ var domprops = [
|
|
|
31557
31721
|
"take",
|
|
31558
31722
|
"takePhoto",
|
|
31559
31723
|
"takeRecords",
|
|
31724
|
+
"takeUntil",
|
|
31560
31725
|
"tan",
|
|
31561
31726
|
"tangentialPressure",
|
|
31562
31727
|
"tanh",
|
|
31563
31728
|
"target",
|
|
31564
31729
|
"targetAddressSpace",
|
|
31565
31730
|
"targetElement",
|
|
31731
|
+
"targetLanguage",
|
|
31566
31732
|
"targetRayMode",
|
|
31567
31733
|
"targetRaySpace",
|
|
31568
31734
|
"targetTouches",
|
|
@@ -31621,6 +31787,7 @@ var domprops = [
|
|
|
31621
31787
|
"textDecoration",
|
|
31622
31788
|
"textDecorationBlink",
|
|
31623
31789
|
"textDecorationColor",
|
|
31790
|
+
"textDecorationInset",
|
|
31624
31791
|
"textDecorationLine",
|
|
31625
31792
|
"textDecorationLineThrough",
|
|
31626
31793
|
"textDecorationNone",
|
|
@@ -31711,6 +31878,7 @@ var domprops = [
|
|
|
31711
31878
|
"toString",
|
|
31712
31879
|
"toStringTag",
|
|
31713
31880
|
"toSum",
|
|
31881
|
+
"toTemporalInstant",
|
|
31714
31882
|
"toTimeString",
|
|
31715
31883
|
"toUTCString",
|
|
31716
31884
|
"toUpperCase",
|
|
@@ -31782,6 +31950,7 @@ var domprops = [
|
|
|
31782
31950
|
"transitionTimingFunction",
|
|
31783
31951
|
"translate",
|
|
31784
31952
|
"translateSelf",
|
|
31953
|
+
"translateStreaming",
|
|
31785
31954
|
"translationX",
|
|
31786
31955
|
"translationY",
|
|
31787
31956
|
"transport",
|
|
@@ -31930,6 +32099,7 @@ var domprops = [
|
|
|
31930
32099
|
"usbVersionMajor",
|
|
31931
32100
|
"usbVersionMinor",
|
|
31932
32101
|
"usbVersionSubminor",
|
|
32102
|
+
"use",
|
|
31933
32103
|
"useCurrentView",
|
|
31934
32104
|
"useMap",
|
|
31935
32105
|
"useProgram",
|
|
@@ -31937,6 +32107,7 @@ var domprops = [
|
|
|
31937
32107
|
"user-select",
|
|
31938
32108
|
"userActivation",
|
|
31939
32109
|
"userAgent",
|
|
32110
|
+
"userAgentAllowsProtocol",
|
|
31940
32111
|
"userAgentData",
|
|
31941
32112
|
"userChoice",
|
|
31942
32113
|
"userHandle",
|
|
@@ -32020,6 +32191,8 @@ var domprops = [
|
|
|
32020
32191
|
"viewTarget",
|
|
32021
32192
|
"viewTargetString",
|
|
32022
32193
|
"viewTransition",
|
|
32194
|
+
"viewTransitionClass",
|
|
32195
|
+
"viewTransitionName",
|
|
32023
32196
|
"viewport",
|
|
32024
32197
|
"viewportAnchorX",
|
|
32025
32198
|
"viewportAnchorY",
|
|
@@ -32254,6 +32427,7 @@ var domprops = [
|
|
|
32254
32427
|
"wheelDelta",
|
|
32255
32428
|
"wheelDeltaX",
|
|
32256
32429
|
"wheelDeltaY",
|
|
32430
|
+
"when",
|
|
32257
32431
|
"whenDefined",
|
|
32258
32432
|
"which",
|
|
32259
32433
|
"white-space",
|
|
@@ -32281,6 +32455,10 @@ var domprops = [
|
|
|
32281
32455
|
"wordBreak",
|
|
32282
32456
|
"wordSpacing",
|
|
32283
32457
|
"wordWrap",
|
|
32458
|
+
"workerCacheLookupStart",
|
|
32459
|
+
"workerFinalSourceType",
|
|
32460
|
+
"workerMatchedSourceType",
|
|
32461
|
+
"workerRouterEvaluationStart",
|
|
32284
32462
|
"workerStart",
|
|
32285
32463
|
"worklet",
|
|
32286
32464
|
"wow64",
|
|
@@ -32325,6 +32503,7 @@ var domprops = [
|
|
|
32325
32503
|
"zIndex",
|
|
32326
32504
|
"zoom",
|
|
32327
32505
|
"zoomAndPan",
|
|
32506
|
+
"zoomLevel",
|
|
32328
32507
|
"zoomRectScreen",
|
|
32329
32508
|
];
|
|
32330
32509
|
|