html-minifier-next 4.19.0 → 4.19.1
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/LICENSE +0 -2
- package/README.md +15 -27
- package/cli.js +2 -4
- package/dist/htmlminifier.cjs +3 -4
- package/dist/htmlminifier.esm.bundle.js +217 -39
- package/dist/types/htmlminifier.d.ts +2 -2
- package/dist/types/htmlminifier.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/htmlminifier.js +3 -4
|
@@ -8287,7 +8287,7 @@ function mergeConsecutiveScripts(html) {
|
|
|
8287
8287
|
* - Cache size is locked after first call—subsequent calls reuse the same cache
|
|
8288
8288
|
* - Explicit `0` values are coerced to `1` (minimum functional cache size)
|
|
8289
8289
|
*
|
|
8290
|
-
* Default: `500`
|
|
8290
|
+
* Default: `500`
|
|
8291
8291
|
*
|
|
8292
8292
|
* @prop {number} [cacheJS]
|
|
8293
8293
|
* The maximum number of entries for the JavaScript minification cache. Higher
|
|
@@ -8296,7 +8296,7 @@ function mergeConsecutiveScripts(html) {
|
|
|
8296
8296
|
* - Cache size is locked after first call—subsequent calls reuse the same cache
|
|
8297
8297
|
* - Explicit `0` values are coerced to `1` (minimum functional cache size)
|
|
8298
8298
|
*
|
|
8299
|
-
* Default: `500`
|
|
8299
|
+
* Default: `500`
|
|
8300
8300
|
*
|
|
8301
8301
|
* @prop {boolean} [caseSensitive]
|
|
8302
8302
|
* When true, tag and attribute names are treated as case-sensitive.
|
|
@@ -9569,8 +9569,7 @@ function joinResultSegments(results, options, restoreCustom, restoreIgnore) {
|
|
|
9569
9569
|
function initCaches(options) {
|
|
9570
9570
|
// Only create caches once (on first call)—sizes are locked after this
|
|
9571
9571
|
if (!cssMinifyCache) {
|
|
9572
|
-
|
|
9573
|
-
const defaultSize = process.env.CI === 'true' ? 1000 : 500;
|
|
9572
|
+
const defaultSize = 500;
|
|
9574
9573
|
|
|
9575
9574
|
// Helper to parse env var—returns parsed number (including 0) or undefined if absent, invalid, or negative
|
|
9576
9575
|
const parseEnvCacheSize = (envVar) => {
|
|
@@ -9758,6 +9757,15 @@ function make_node(ctor, orig, props) {
|
|
|
9758
9757
|
return new ctor(props);
|
|
9759
9758
|
}
|
|
9760
9759
|
|
|
9760
|
+
/** Makes a `void 0` expression. Use instead of AST_Undefined which may conflict
|
|
9761
|
+
* with an existing variable called `undefined` */
|
|
9762
|
+
function make_void_0(orig) {
|
|
9763
|
+
return make_node(AST_UnaryPrefix, orig, {
|
|
9764
|
+
operator: "void",
|
|
9765
|
+
expression: make_node(AST_Number, orig, { value: 0 })
|
|
9766
|
+
});
|
|
9767
|
+
}
|
|
9768
|
+
|
|
9761
9769
|
function push_uniq(array, el) {
|
|
9762
9770
|
if (!array.includes(el))
|
|
9763
9771
|
array.push(el);
|
|
@@ -23191,7 +23199,7 @@ function make_node_from_constant(val, orig) {
|
|
|
23191
23199
|
case "boolean":
|
|
23192
23200
|
return make_node(val ? AST_True : AST_False, orig);
|
|
23193
23201
|
case "undefined":
|
|
23194
|
-
return
|
|
23202
|
+
return make_void_0(orig);
|
|
23195
23203
|
default:
|
|
23196
23204
|
if (val === null) {
|
|
23197
23205
|
return make_node(AST_Null, orig, { value: null });
|
|
@@ -26047,7 +26055,7 @@ function safe_to_read(tw, def) {
|
|
|
26047
26055
|
if (def.fixed == null) {
|
|
26048
26056
|
var orig = def.orig[0];
|
|
26049
26057
|
if (orig instanceof AST_SymbolFunarg || orig.name == "arguments") return false;
|
|
26050
|
-
def.fixed =
|
|
26058
|
+
def.fixed = make_void_0(orig);
|
|
26051
26059
|
}
|
|
26052
26060
|
return true;
|
|
26053
26061
|
}
|
|
@@ -26345,7 +26353,7 @@ function mark_lambda(tw, descend, compressor) {
|
|
|
26345
26353
|
if (d.orig.length > 1) return;
|
|
26346
26354
|
if (d.fixed === undefined && (!this.uses_arguments || tw.has_directive("use strict"))) {
|
|
26347
26355
|
d.fixed = function() {
|
|
26348
|
-
return iife.args[i] ||
|
|
26356
|
+
return iife.args[i] || make_void_0(iife);
|
|
26349
26357
|
};
|
|
26350
26358
|
tw.loop_ids.set(d.id, tw.in_loop);
|
|
26351
26359
|
mark(tw, d, true);
|
|
@@ -27270,7 +27278,7 @@ function tighten_body(statements, compressor) {
|
|
|
27270
27278
|
}
|
|
27271
27279
|
} else {
|
|
27272
27280
|
if (!arg) {
|
|
27273
|
-
arg =
|
|
27281
|
+
arg = make_void_0(sym).transform(compressor);
|
|
27274
27282
|
} else if (arg instanceof AST_Lambda && arg.pinned()
|
|
27275
27283
|
|| has_overlapping_symbol(fn, arg, fn_strict)) {
|
|
27276
27284
|
arg = null;
|
|
@@ -27510,7 +27518,7 @@ function tighten_body(statements, compressor) {
|
|
|
27510
27518
|
found = true;
|
|
27511
27519
|
if (node instanceof AST_VarDef) {
|
|
27512
27520
|
node.value = node.name instanceof AST_SymbolConst
|
|
27513
|
-
?
|
|
27521
|
+
? make_void_0(node.value) // `const` always needs value.
|
|
27514
27522
|
: null;
|
|
27515
27523
|
return node;
|
|
27516
27524
|
}
|
|
@@ -27949,7 +27957,7 @@ function tighten_body(statements, compressor) {
|
|
|
27949
27957
|
var stat = statements[i];
|
|
27950
27958
|
if (prev) {
|
|
27951
27959
|
if (stat instanceof AST_Exit) {
|
|
27952
|
-
stat.value = cons_seq(stat.value ||
|
|
27960
|
+
stat.value = cons_seq(stat.value || make_void_0(stat).transform(compressor));
|
|
27953
27961
|
} else if (stat instanceof AST_For) {
|
|
27954
27962
|
if (!(stat.init instanceof AST_DefinitionsLike)) {
|
|
27955
27963
|
const abort = walk(prev.body, node => {
|
|
@@ -28454,7 +28462,7 @@ function inline_into_call(self, compressor) {
|
|
|
28454
28462
|
if (returned) {
|
|
28455
28463
|
returned = returned.clone(true);
|
|
28456
28464
|
} else {
|
|
28457
|
-
returned =
|
|
28465
|
+
returned = make_void_0(self);
|
|
28458
28466
|
}
|
|
28459
28467
|
const args = self.args.concat(returned);
|
|
28460
28468
|
return make_sequence(self, args).optimize(compressor);
|
|
@@ -28470,7 +28478,7 @@ function inline_into_call(self, compressor) {
|
|
|
28470
28478
|
&& returned.name === fn.argnames[0].name
|
|
28471
28479
|
) {
|
|
28472
28480
|
const replacement =
|
|
28473
|
-
(self.args[0] ||
|
|
28481
|
+
(self.args[0] || make_void_0()).optimize(compressor);
|
|
28474
28482
|
|
|
28475
28483
|
let parent;
|
|
28476
28484
|
if (
|
|
@@ -28552,7 +28560,7 @@ function inline_into_call(self, compressor) {
|
|
|
28552
28560
|
|
|
28553
28561
|
const can_drop_this_call = is_regular_func && compressor.option("side_effects") && fn.body.every(is_empty);
|
|
28554
28562
|
if (can_drop_this_call) {
|
|
28555
|
-
var args = self.args.concat(
|
|
28563
|
+
var args = self.args.concat(make_void_0(self));
|
|
28556
28564
|
return make_sequence(self, args).optimize(compressor);
|
|
28557
28565
|
}
|
|
28558
28566
|
|
|
@@ -28571,9 +28579,9 @@ function inline_into_call(self, compressor) {
|
|
|
28571
28579
|
return self;
|
|
28572
28580
|
|
|
28573
28581
|
function return_value(stat) {
|
|
28574
|
-
if (!stat) return
|
|
28582
|
+
if (!stat) return make_void_0(self);
|
|
28575
28583
|
if (stat instanceof AST_Return) {
|
|
28576
|
-
if (!stat.value) return
|
|
28584
|
+
if (!stat.value) return make_void_0(self);
|
|
28577
28585
|
return stat.value.clone(true);
|
|
28578
28586
|
}
|
|
28579
28587
|
if (stat instanceof AST_SimpleStatement) {
|
|
@@ -28719,7 +28727,7 @@ function inline_into_call(self, compressor) {
|
|
|
28719
28727
|
} else {
|
|
28720
28728
|
var symbol = make_node(AST_SymbolVar, name, name);
|
|
28721
28729
|
name.definition().orig.push(symbol);
|
|
28722
|
-
if (!value && in_loop) value =
|
|
28730
|
+
if (!value && in_loop) value = make_void_0(self);
|
|
28723
28731
|
append_var(decls, expressions, symbol, value);
|
|
28724
28732
|
}
|
|
28725
28733
|
}
|
|
@@ -28746,7 +28754,7 @@ function inline_into_call(self, compressor) {
|
|
|
28746
28754
|
operator: "=",
|
|
28747
28755
|
logical: false,
|
|
28748
28756
|
left: sym,
|
|
28749
|
-
right:
|
|
28757
|
+
right: make_void_0(name),
|
|
28750
28758
|
}));
|
|
28751
28759
|
}
|
|
28752
28760
|
}
|
|
@@ -29244,7 +29252,7 @@ AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
|
|
29244
29252
|
set_flag(exp.expression, SQUEEZED);
|
|
29245
29253
|
self.args = [];
|
|
29246
29254
|
} else {
|
|
29247
|
-
return
|
|
29255
|
+
return make_void_0(self);
|
|
29248
29256
|
}
|
|
29249
29257
|
}
|
|
29250
29258
|
});
|
|
@@ -29272,12 +29280,7 @@ AST_Scope.DEFMETHOD("process_expression", function(insert, compressor) {
|
|
|
29272
29280
|
: make_node(AST_EmptyStatement, node);
|
|
29273
29281
|
}
|
|
29274
29282
|
return make_node(AST_SimpleStatement, node, {
|
|
29275
|
-
body: node.value ||
|
|
29276
|
-
operator: "void",
|
|
29277
|
-
expression: make_node(AST_Number, node, {
|
|
29278
|
-
value: 0
|
|
29279
|
-
})
|
|
29280
|
-
})
|
|
29283
|
+
body: node.value || make_void_0(node)
|
|
29281
29284
|
});
|
|
29282
29285
|
}
|
|
29283
29286
|
if (node instanceof AST_Class || node instanceof AST_Lambda && node !== self) {
|
|
@@ -29880,8 +29883,8 @@ def_optimize(AST_If, function(self, compressor) {
|
|
|
29880
29883
|
return make_node(self.body.CTOR, self, {
|
|
29881
29884
|
value: make_node(AST_Conditional, self, {
|
|
29882
29885
|
condition : self.condition,
|
|
29883
|
-
consequent : self.body.value ||
|
|
29884
|
-
alternative : self.alternative.value ||
|
|
29886
|
+
consequent : self.body.value || make_void_0(self.body),
|
|
29887
|
+
alternative : self.alternative.value || make_void_0(self.alternative),
|
|
29885
29888
|
}).transform(compressor)
|
|
29886
29889
|
}).optimize(compressor);
|
|
29887
29890
|
}
|
|
@@ -30434,7 +30437,7 @@ def_optimize(AST_Call, function(self, compressor) {
|
|
|
30434
30437
|
const value = condition.evaluate(compressor);
|
|
30435
30438
|
|
|
30436
30439
|
if (value === 1 || value === true) {
|
|
30437
|
-
return
|
|
30440
|
+
return make_void_0(self).optimize(compressor);
|
|
30438
30441
|
}
|
|
30439
30442
|
}
|
|
30440
30443
|
}
|
|
@@ -30796,6 +30799,10 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
|
|
30796
30799
|
) {
|
|
30797
30800
|
return make_sequence(self, [e, make_node(AST_True, self)]).optimize(compressor);
|
|
30798
30801
|
}
|
|
30802
|
+
// Short-circuit common `void 0`
|
|
30803
|
+
if (self.operator === "void" && e instanceof AST_Number && e.value === 0) {
|
|
30804
|
+
return unsafe_undefined_ref(self, compressor) || self;
|
|
30805
|
+
}
|
|
30799
30806
|
var seq = self.lift_sequences(compressor);
|
|
30800
30807
|
if (seq !== self) {
|
|
30801
30808
|
return seq;
|
|
@@ -30806,7 +30813,7 @@ def_optimize(AST_UnaryPrefix, function(self, compressor) {
|
|
|
30806
30813
|
self.expression = e;
|
|
30807
30814
|
return self;
|
|
30808
30815
|
} else {
|
|
30809
|
-
return
|
|
30816
|
+
return make_void_0(self).optimize(compressor);
|
|
30810
30817
|
}
|
|
30811
30818
|
}
|
|
30812
30819
|
if (compressor.in_boolean_context()) {
|
|
@@ -30992,7 +30999,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
30992
30999
|
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
30993
31000
|
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
|
30994
31001
|
self.right = expr;
|
|
30995
|
-
self.left =
|
|
31002
|
+
self.left = make_void_0(self.left).optimize(compressor);
|
|
30996
31003
|
if (self.operator.length == 2) self.operator += "=";
|
|
30997
31004
|
}
|
|
30998
31005
|
} else if (compressor.option("typeofs")
|
|
@@ -31005,7 +31012,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
31005
31012
|
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
31006
31013
|
: !(expr instanceof AST_PropAccess && compressor.option("ie8"))) {
|
|
31007
31014
|
self.left = expr;
|
|
31008
|
-
self.right =
|
|
31015
|
+
self.right = make_void_0(self.right).optimize(compressor);
|
|
31009
31016
|
if (self.operator.length == 2) self.operator += "=";
|
|
31010
31017
|
}
|
|
31011
31018
|
} else if (self.left instanceof AST_SymbolRef
|
|
@@ -31646,7 +31653,8 @@ function is_atomic(lhs, self) {
|
|
|
31646
31653
|
return lhs instanceof AST_SymbolRef || lhs.TYPE === self.TYPE;
|
|
31647
31654
|
}
|
|
31648
31655
|
|
|
31649
|
-
|
|
31656
|
+
/** Apply the `unsafe_undefined` option: find a variable called `undefined` and turn `self` into a reference to it. */
|
|
31657
|
+
function unsafe_undefined_ref(self, compressor) {
|
|
31650
31658
|
if (compressor.option("unsafe_undefined")) {
|
|
31651
31659
|
var undef = find_variable(compressor, "undefined");
|
|
31652
31660
|
if (undef) {
|
|
@@ -31659,14 +31667,15 @@ def_optimize(AST_Undefined, function(self, compressor) {
|
|
|
31659
31667
|
return ref;
|
|
31660
31668
|
}
|
|
31661
31669
|
}
|
|
31670
|
+
return null;
|
|
31671
|
+
}
|
|
31672
|
+
|
|
31673
|
+
def_optimize(AST_Undefined, function(self, compressor) {
|
|
31674
|
+
var symbolref = unsafe_undefined_ref(self, compressor);
|
|
31675
|
+
if (symbolref) return symbolref;
|
|
31662
31676
|
var lhs = compressor.is_lhs();
|
|
31663
31677
|
if (lhs && is_atomic(lhs, self)) return self;
|
|
31664
|
-
return
|
|
31665
|
-
operator: "void",
|
|
31666
|
-
expression: make_node(AST_Number, self, {
|
|
31667
|
-
value: 0
|
|
31668
|
-
})
|
|
31669
|
-
});
|
|
31678
|
+
return make_void_0(self);
|
|
31670
31679
|
});
|
|
31671
31680
|
|
|
31672
31681
|
def_optimize(AST_Infinity, function(self, compressor) {
|
|
@@ -32353,7 +32362,7 @@ def_optimize(AST_Sub, function(self, compressor) {
|
|
|
32353
32362
|
}
|
|
32354
32363
|
}
|
|
32355
32364
|
if (retValue instanceof AST_Expansion) break FLATTEN;
|
|
32356
|
-
retValue = retValue instanceof AST_Hole ?
|
|
32365
|
+
retValue = retValue instanceof AST_Hole ? make_void_0(retValue) : retValue;
|
|
32357
32366
|
if (!flatten) values.unshift(retValue);
|
|
32358
32367
|
while (--i >= 0) {
|
|
32359
32368
|
var value = elements[i];
|
|
@@ -32392,7 +32401,7 @@ def_optimize(AST_Chain, function (self, compressor) {
|
|
|
32392
32401
|
if (parent instanceof AST_UnaryPrefix && parent.operator === "delete") {
|
|
32393
32402
|
return make_node_from_constant(0, self);
|
|
32394
32403
|
}
|
|
32395
|
-
return
|
|
32404
|
+
return make_void_0(self).optimize(compressor);
|
|
32396
32405
|
}
|
|
32397
32406
|
if (
|
|
32398
32407
|
self.expression instanceof AST_PropAccess
|
|
@@ -34063,6 +34072,7 @@ var domprops = [
|
|
|
34063
34072
|
"Array",
|
|
34064
34073
|
"ArrayBuffer",
|
|
34065
34074
|
"ArrayType",
|
|
34075
|
+
"AsyncDisposableStack",
|
|
34066
34076
|
"Atomics",
|
|
34067
34077
|
"Attr",
|
|
34068
34078
|
"Audio",
|
|
@@ -34201,6 +34211,7 @@ var domprops = [
|
|
|
34201
34211
|
"COPY_WRITE_BUFFER",
|
|
34202
34212
|
"COPY_WRITE_BUFFER_BINDING",
|
|
34203
34213
|
"COUNTER_STYLE_RULE",
|
|
34214
|
+
"CSPViolationReportBody",
|
|
34204
34215
|
"CSS",
|
|
34205
34216
|
"CSS2Properties",
|
|
34206
34217
|
"CSSAnimation",
|
|
@@ -34211,6 +34222,9 @@ var domprops = [
|
|
|
34211
34222
|
"CSSFontFaceRule",
|
|
34212
34223
|
"CSSFontFeatureValuesRule",
|
|
34213
34224
|
"CSSFontPaletteValuesRule",
|
|
34225
|
+
"CSSFunctionDeclarations",
|
|
34226
|
+
"CSSFunctionDescriptors",
|
|
34227
|
+
"CSSFunctionRule",
|
|
34214
34228
|
"CSSGroupingRule",
|
|
34215
34229
|
"CSSImageValue",
|
|
34216
34230
|
"CSSImportRule",
|
|
@@ -34254,6 +34268,7 @@ var domprops = [
|
|
|
34254
34268
|
"CSSSkewY",
|
|
34255
34269
|
"CSSStartingStyleRule",
|
|
34256
34270
|
"CSSStyleDeclaration",
|
|
34271
|
+
"CSSStyleProperties",
|
|
34257
34272
|
"CSSStyleRule",
|
|
34258
34273
|
"CSSStyleSheet",
|
|
34259
34274
|
"CSSStyleValue",
|
|
@@ -34387,6 +34402,7 @@ var domprops = [
|
|
|
34387
34402
|
"CookieStoreManager",
|
|
34388
34403
|
"CountQueuingStrategy",
|
|
34389
34404
|
"Counter",
|
|
34405
|
+
"CreateMonitor",
|
|
34390
34406
|
"CreateType",
|
|
34391
34407
|
"Credential",
|
|
34392
34408
|
"CredentialsContainer",
|
|
@@ -34896,11 +34912,14 @@ var domprops = [
|
|
|
34896
34912
|
"DeviceMotionEventAcceleration",
|
|
34897
34913
|
"DeviceMotionEventRotationRate",
|
|
34898
34914
|
"DeviceOrientationEvent",
|
|
34915
|
+
"DevicePosture",
|
|
34899
34916
|
"DeviceProximityEvent",
|
|
34900
34917
|
"DeviceStorage",
|
|
34901
34918
|
"DeviceStorageChangeEvent",
|
|
34919
|
+
"DigitalCredential",
|
|
34902
34920
|
"Directory",
|
|
34903
34921
|
"DisplayNames",
|
|
34922
|
+
"DisposableStack",
|
|
34904
34923
|
"Document",
|
|
34905
34924
|
"DocumentFragment",
|
|
34906
34925
|
"DocumentPictureInPicture",
|
|
@@ -34908,6 +34927,7 @@ var domprops = [
|
|
|
34908
34927
|
"DocumentTimeline",
|
|
34909
34928
|
"DocumentType",
|
|
34910
34929
|
"DragEvent",
|
|
34930
|
+
"Duration",
|
|
34911
34931
|
"DurationFormat",
|
|
34912
34932
|
"DynamicsCompressorNode",
|
|
34913
34933
|
"E",
|
|
@@ -35015,6 +35035,7 @@ var domprops = [
|
|
|
35015
35035
|
"FeedEntry",
|
|
35016
35036
|
"Fence",
|
|
35017
35037
|
"FencedFrameConfig",
|
|
35038
|
+
"FetchLaterResult",
|
|
35018
35039
|
"File",
|
|
35019
35040
|
"FileError",
|
|
35020
35041
|
"FileList",
|
|
@@ -35027,6 +35048,7 @@ var domprops = [
|
|
|
35027
35048
|
"FileSystemFileEntry",
|
|
35028
35049
|
"FileSystemFileHandle",
|
|
35029
35050
|
"FileSystemHandle",
|
|
35051
|
+
"FileSystemObserver",
|
|
35030
35052
|
"FileSystemWritableFileStream",
|
|
35031
35053
|
"FinalizationRegistry",
|
|
35032
35054
|
"FindInPage",
|
|
@@ -35192,6 +35214,7 @@ var domprops = [
|
|
|
35192
35214
|
"HTMLQuoteElement",
|
|
35193
35215
|
"HTMLScriptElement",
|
|
35194
35216
|
"HTMLSelectElement",
|
|
35217
|
+
"HTMLSelectedContentElement",
|
|
35195
35218
|
"HTMLShadowElement",
|
|
35196
35219
|
"HTMLSlotElement",
|
|
35197
35220
|
"HTMLSourceElement",
|
|
@@ -35236,6 +35259,7 @@ var domprops = [
|
|
|
35236
35259
|
"IDBMutableFile",
|
|
35237
35260
|
"IDBObjectStore",
|
|
35238
35261
|
"IDBOpenDBRequest",
|
|
35262
|
+
"IDBRecord",
|
|
35239
35263
|
"IDBRequest",
|
|
35240
35264
|
"IDBTransaction",
|
|
35241
35265
|
"IDBVersionChangeEvent",
|
|
@@ -35298,10 +35322,13 @@ var domprops = [
|
|
|
35298
35322
|
"InstallTrigger",
|
|
35299
35323
|
"InstallTriggerImpl",
|
|
35300
35324
|
"Instance",
|
|
35325
|
+
"Instant",
|
|
35301
35326
|
"Int16Array",
|
|
35302
35327
|
"Int32Array",
|
|
35303
35328
|
"Int8Array",
|
|
35329
|
+
"IntegrityViolationReportBody",
|
|
35304
35330
|
"Intent",
|
|
35331
|
+
"InterestEvent",
|
|
35305
35332
|
"InternalError",
|
|
35306
35333
|
"IntersectionObserver",
|
|
35307
35334
|
"IntersectionObserverEntry",
|
|
@@ -35351,6 +35378,7 @@ var domprops = [
|
|
|
35351
35378
|
"LUMINANCE",
|
|
35352
35379
|
"LUMINANCE_ALPHA",
|
|
35353
35380
|
"LanguageCode",
|
|
35381
|
+
"LanguageDetector",
|
|
35354
35382
|
"LargestContentfulPaint",
|
|
35355
35383
|
"LaunchParams",
|
|
35356
35384
|
"LaunchQueue",
|
|
@@ -35680,6 +35708,7 @@ var domprops = [
|
|
|
35680
35708
|
"NavigationCurrentEntryChangeEvent",
|
|
35681
35709
|
"NavigationDestination",
|
|
35682
35710
|
"NavigationHistoryEntry",
|
|
35711
|
+
"NavigationPrecommitController",
|
|
35683
35712
|
"NavigationPreloadManager",
|
|
35684
35713
|
"NavigationTransition",
|
|
35685
35714
|
"Navigator",
|
|
@@ -35697,6 +35726,7 @@ var domprops = [
|
|
|
35697
35726
|
"Notation",
|
|
35698
35727
|
"Notification",
|
|
35699
35728
|
"NotifyPaintEvent",
|
|
35729
|
+
"Now",
|
|
35700
35730
|
"Number",
|
|
35701
35731
|
"NumberFormat",
|
|
35702
35732
|
"OBJECT_TYPE",
|
|
@@ -35718,6 +35748,7 @@ var domprops = [
|
|
|
35718
35748
|
"OTPCredential",
|
|
35719
35749
|
"OUT_OF_MEMORY",
|
|
35720
35750
|
"Object",
|
|
35751
|
+
"Observable",
|
|
35721
35752
|
"OfflineAudioCompletionEvent",
|
|
35722
35753
|
"OfflineAudioContext",
|
|
35723
35754
|
"OfflineResourceList",
|
|
@@ -35819,6 +35850,11 @@ var domprops = [
|
|
|
35819
35850
|
"PhotoCapabilities",
|
|
35820
35851
|
"PictureInPictureEvent",
|
|
35821
35852
|
"PictureInPictureWindow",
|
|
35853
|
+
"PlainDate",
|
|
35854
|
+
"PlainDateTime",
|
|
35855
|
+
"PlainMonthDay",
|
|
35856
|
+
"PlainTime",
|
|
35857
|
+
"PlainYearMonth",
|
|
35822
35858
|
"PlatformArch",
|
|
35823
35859
|
"PlatformInfo",
|
|
35824
35860
|
"PlatformNaclArch",
|
|
@@ -35859,6 +35895,7 @@ var domprops = [
|
|
|
35859
35895
|
"QUOTA_ERR",
|
|
35860
35896
|
"QUOTA_EXCEEDED_ERR",
|
|
35861
35897
|
"QueryInterface",
|
|
35898
|
+
"QuotaExceededError",
|
|
35862
35899
|
"R11F_G11F_B10F",
|
|
35863
35900
|
"R16F",
|
|
35864
35901
|
"R16I",
|
|
@@ -35999,6 +36036,7 @@ var domprops = [
|
|
|
35999
36036
|
"ResizeObserverEntry",
|
|
36000
36037
|
"ResizeObserverSize",
|
|
36001
36038
|
"Response",
|
|
36039
|
+
"RestrictionTarget",
|
|
36002
36040
|
"RuntimeError",
|
|
36003
36041
|
"SAMPLER_2D",
|
|
36004
36042
|
"SAMPLER_2D_ARRAY",
|
|
@@ -36405,6 +36443,11 @@ var domprops = [
|
|
|
36405
36443
|
"ShadowRoot",
|
|
36406
36444
|
"SharedArrayBuffer",
|
|
36407
36445
|
"SharedStorage",
|
|
36446
|
+
"SharedStorageAppendMethod",
|
|
36447
|
+
"SharedStorageClearMethod",
|
|
36448
|
+
"SharedStorageDeleteMethod",
|
|
36449
|
+
"SharedStorageModifierMethod",
|
|
36450
|
+
"SharedStorageSetMethod",
|
|
36408
36451
|
"SharedStorageWorklet",
|
|
36409
36452
|
"SharedWorker",
|
|
36410
36453
|
"SharingState",
|
|
@@ -36412,6 +36455,12 @@ var domprops = [
|
|
|
36412
36455
|
"SnapEvent",
|
|
36413
36456
|
"SourceBuffer",
|
|
36414
36457
|
"SourceBufferList",
|
|
36458
|
+
"SpeechGrammar",
|
|
36459
|
+
"SpeechGrammarList",
|
|
36460
|
+
"SpeechRecognition",
|
|
36461
|
+
"SpeechRecognitionErrorEvent",
|
|
36462
|
+
"SpeechRecognitionEvent",
|
|
36463
|
+
"SpeechRecognitionPhrase",
|
|
36415
36464
|
"SpeechSynthesis",
|
|
36416
36465
|
"SpeechSynthesisErrorEvent",
|
|
36417
36466
|
"SpeechSynthesisEvent",
|
|
@@ -36432,7 +36481,12 @@ var domprops = [
|
|
|
36432
36481
|
"StyleSheet",
|
|
36433
36482
|
"StyleSheetList",
|
|
36434
36483
|
"SubmitEvent",
|
|
36484
|
+
"Subscriber",
|
|
36435
36485
|
"SubtleCrypto",
|
|
36486
|
+
"Summarizer",
|
|
36487
|
+
"SuppressedError",
|
|
36488
|
+
"SuspendError",
|
|
36489
|
+
"Suspending",
|
|
36436
36490
|
"Symbol",
|
|
36437
36491
|
"SyncManager",
|
|
36438
36492
|
"SyntaxError",
|
|
@@ -36543,6 +36597,7 @@ var domprops = [
|
|
|
36543
36597
|
"TaskController",
|
|
36544
36598
|
"TaskPriorityChangeEvent",
|
|
36545
36599
|
"TaskSignal",
|
|
36600
|
+
"Temporal",
|
|
36546
36601
|
"Text",
|
|
36547
36602
|
"TextDecoder",
|
|
36548
36603
|
"TextDecoderStream",
|
|
@@ -36567,6 +36622,7 @@ var domprops = [
|
|
|
36567
36622
|
"TransformStream",
|
|
36568
36623
|
"TransformStreamDefaultController",
|
|
36569
36624
|
"TransitionEvent",
|
|
36625
|
+
"Translator",
|
|
36570
36626
|
"TreeWalker",
|
|
36571
36627
|
"TrustedHTML",
|
|
36572
36628
|
"TrustedScript",
|
|
@@ -36711,6 +36767,7 @@ var domprops = [
|
|
|
36711
36767
|
"ViewTransition",
|
|
36712
36768
|
"ViewTransitionTypeSet",
|
|
36713
36769
|
"ViewType",
|
|
36770
|
+
"Viewport",
|
|
36714
36771
|
"VirtualKeyboard",
|
|
36715
36772
|
"VirtualKeyboardGeometryChangeEvent",
|
|
36716
36773
|
"VisibilityStateEntry",
|
|
@@ -36920,6 +36977,7 @@ var domprops = [
|
|
|
36920
36977
|
"XRWebGLLayer",
|
|
36921
36978
|
"XSLTProcessor",
|
|
36922
36979
|
"ZERO",
|
|
36980
|
+
"ZonedDateTime",
|
|
36923
36981
|
"ZoomSettings",
|
|
36924
36982
|
"ZoomSettingsMode",
|
|
36925
36983
|
"ZoomSettingsScope",
|
|
@@ -36969,6 +37027,7 @@ var domprops = [
|
|
|
36969
37027
|
"activeSourceCount",
|
|
36970
37028
|
"activeTexture",
|
|
36971
37029
|
"activeVRDisplays",
|
|
37030
|
+
"activeViewTransition",
|
|
36972
37031
|
"activityLog",
|
|
36973
37032
|
"actualBoundingBoxAscent",
|
|
36974
37033
|
"actualBoundingBoxDescent",
|
|
@@ -36976,6 +37035,7 @@ var domprops = [
|
|
|
36976
37035
|
"actualBoundingBoxRight",
|
|
36977
37036
|
"adAuctionComponents",
|
|
36978
37037
|
"adAuctionHeaders",
|
|
37038
|
+
"adapterInfo",
|
|
36979
37039
|
"add",
|
|
36980
37040
|
"addAll",
|
|
36981
37041
|
"addBehavior",
|
|
@@ -37001,6 +37061,7 @@ var domprops = [
|
|
|
37001
37061
|
"addSearchEngine",
|
|
37002
37062
|
"addSourceBuffer",
|
|
37003
37063
|
"addStream",
|
|
37064
|
+
"addTeardown",
|
|
37004
37065
|
"addTextTrack",
|
|
37005
37066
|
"addTrack",
|
|
37006
37067
|
"addTransceiver",
|
|
@@ -37015,6 +37076,7 @@ var domprops = [
|
|
|
37015
37076
|
"addressModeU",
|
|
37016
37077
|
"addressModeV",
|
|
37017
37078
|
"addressModeW",
|
|
37079
|
+
"adopt",
|
|
37018
37080
|
"adoptNode",
|
|
37019
37081
|
"adoptedCallback",
|
|
37020
37082
|
"adoptedStyleSheets",
|
|
@@ -37062,8 +37124,10 @@ var domprops = [
|
|
|
37062
37124
|
"amplitude",
|
|
37063
37125
|
"ancestorOrigins",
|
|
37064
37126
|
"anchor",
|
|
37127
|
+
"anchorName",
|
|
37065
37128
|
"anchorNode",
|
|
37066
37129
|
"anchorOffset",
|
|
37130
|
+
"anchorScope",
|
|
37067
37131
|
"anchorSpace",
|
|
37068
37132
|
"anchors",
|
|
37069
37133
|
"and",
|
|
@@ -37099,6 +37163,7 @@ var domprops = [
|
|
|
37099
37163
|
"animationTimingFunction",
|
|
37100
37164
|
"animationsPaused",
|
|
37101
37165
|
"anniversary",
|
|
37166
|
+
"annotation",
|
|
37102
37167
|
"antialias",
|
|
37103
37168
|
"anticipatedRemoval",
|
|
37104
37169
|
"any",
|
|
@@ -37133,6 +37198,7 @@ var domprops = [
|
|
|
37133
37198
|
"archive",
|
|
37134
37199
|
"areas",
|
|
37135
37200
|
"arguments",
|
|
37201
|
+
"ariaActiveDescendantElement",
|
|
37136
37202
|
"ariaAtomic",
|
|
37137
37203
|
"ariaAutoComplete",
|
|
37138
37204
|
"ariaBrailleLabel",
|
|
@@ -37143,21 +37209,29 @@ var domprops = [
|
|
|
37143
37209
|
"ariaColIndex",
|
|
37144
37210
|
"ariaColIndexText",
|
|
37145
37211
|
"ariaColSpan",
|
|
37212
|
+
"ariaControlsElements",
|
|
37146
37213
|
"ariaCurrent",
|
|
37214
|
+
"ariaDescribedByElements",
|
|
37147
37215
|
"ariaDescription",
|
|
37216
|
+
"ariaDetailsElements",
|
|
37148
37217
|
"ariaDisabled",
|
|
37218
|
+
"ariaErrorMessageElements",
|
|
37149
37219
|
"ariaExpanded",
|
|
37220
|
+
"ariaFlowToElements",
|
|
37150
37221
|
"ariaHasPopup",
|
|
37151
37222
|
"ariaHidden",
|
|
37152
37223
|
"ariaInvalid",
|
|
37153
37224
|
"ariaKeyShortcuts",
|
|
37154
37225
|
"ariaLabel",
|
|
37226
|
+
"ariaLabelledByElements",
|
|
37155
37227
|
"ariaLevel",
|
|
37156
37228
|
"ariaLive",
|
|
37157
37229
|
"ariaModal",
|
|
37158
37230
|
"ariaMultiLine",
|
|
37159
37231
|
"ariaMultiSelectable",
|
|
37232
|
+
"ariaNotify",
|
|
37160
37233
|
"ariaOrientation",
|
|
37234
|
+
"ariaOwnsElements",
|
|
37161
37235
|
"ariaPlaceholder",
|
|
37162
37236
|
"ariaPosInSet",
|
|
37163
37237
|
"ariaPressed",
|
|
@@ -37300,6 +37374,7 @@ var domprops = [
|
|
|
37300
37374
|
"baseline-source",
|
|
37301
37375
|
"baselineShift",
|
|
37302
37376
|
"baselineSource",
|
|
37377
|
+
"batchUpdate",
|
|
37303
37378
|
"battery",
|
|
37304
37379
|
"bday",
|
|
37305
37380
|
"before",
|
|
@@ -37352,6 +37427,7 @@ var domprops = [
|
|
|
37352
37427
|
"blockDirection",
|
|
37353
37428
|
"blockSize",
|
|
37354
37429
|
"blockedURI",
|
|
37430
|
+
"blockedURL",
|
|
37355
37431
|
"blocking",
|
|
37356
37432
|
"blockingDuration",
|
|
37357
37433
|
"blue",
|
|
@@ -37362,6 +37438,7 @@ var domprops = [
|
|
|
37362
37438
|
"bold",
|
|
37363
37439
|
"bookmarks",
|
|
37364
37440
|
"booleanValue",
|
|
37441
|
+
"boost",
|
|
37365
37442
|
"border",
|
|
37366
37443
|
"border-block",
|
|
37367
37444
|
"border-block-color",
|
|
@@ -37627,6 +37704,7 @@ var domprops = [
|
|
|
37627
37704
|
"characterData",
|
|
37628
37705
|
"characterDataOldValue",
|
|
37629
37706
|
"characterSet",
|
|
37707
|
+
"characterVariant",
|
|
37630
37708
|
"characteristic",
|
|
37631
37709
|
"charging",
|
|
37632
37710
|
"chargingTime",
|
|
@@ -37713,6 +37791,7 @@ var domprops = [
|
|
|
37713
37791
|
"closeCode",
|
|
37714
37792
|
"closePath",
|
|
37715
37793
|
"closed",
|
|
37794
|
+
"closedBy",
|
|
37716
37795
|
"closest",
|
|
37717
37796
|
"clz",
|
|
37718
37797
|
"clz32",
|
|
@@ -37770,11 +37849,13 @@ var domprops = [
|
|
|
37770
37849
|
"columnWidth",
|
|
37771
37850
|
"columns",
|
|
37772
37851
|
"command",
|
|
37852
|
+
"commandForElement",
|
|
37773
37853
|
"commands",
|
|
37774
37854
|
"commit",
|
|
37775
37855
|
"commitLoadTime",
|
|
37776
37856
|
"commitPreferences",
|
|
37777
37857
|
"commitStyles",
|
|
37858
|
+
"committed",
|
|
37778
37859
|
"commonAncestorContainer",
|
|
37779
37860
|
"compact",
|
|
37780
37861
|
"compare",
|
|
@@ -37810,6 +37891,7 @@ var domprops = [
|
|
|
37810
37891
|
"coneOuterAngle",
|
|
37811
37892
|
"coneOuterGain",
|
|
37812
37893
|
"config",
|
|
37894
|
+
"configURL",
|
|
37813
37895
|
"configurable",
|
|
37814
37896
|
"configuration",
|
|
37815
37897
|
"configurationName",
|
|
@@ -37828,6 +37910,7 @@ var domprops = [
|
|
|
37828
37910
|
"connectStart",
|
|
37829
37911
|
"connected",
|
|
37830
37912
|
"connectedCallback",
|
|
37913
|
+
"connectedMoveCallback",
|
|
37831
37914
|
"connection",
|
|
37832
37915
|
"connectionInfo",
|
|
37833
37916
|
"connectionList",
|
|
@@ -37868,6 +37951,7 @@ var domprops = [
|
|
|
37868
37951
|
"contentBoxSize",
|
|
37869
37952
|
"contentDocument",
|
|
37870
37953
|
"contentEditable",
|
|
37954
|
+
"contentEncoding",
|
|
37871
37955
|
"contentHint",
|
|
37872
37956
|
"contentOverflow",
|
|
37873
37957
|
"contentRect",
|
|
@@ -38148,6 +38232,7 @@ var domprops = [
|
|
|
38148
38232
|
"decodedBodySize",
|
|
38149
38233
|
"decoding",
|
|
38150
38234
|
"decodingInfo",
|
|
38235
|
+
"decreaseZoomLevel",
|
|
38151
38236
|
"decrypt",
|
|
38152
38237
|
"default",
|
|
38153
38238
|
"defaultCharset",
|
|
@@ -38218,6 +38303,7 @@ var domprops = [
|
|
|
38218
38303
|
"deprecatedReplaceInURN",
|
|
38219
38304
|
"deprecatedRunAdAuctionEnforcesKAnonymity",
|
|
38220
38305
|
"deprecatedURNToURL",
|
|
38306
|
+
"depthActive",
|
|
38221
38307
|
"depthBias",
|
|
38222
38308
|
"depthBiasClamp",
|
|
38223
38309
|
"depthBiasSlopeScale",
|
|
@@ -38237,6 +38323,7 @@ var domprops = [
|
|
|
38237
38323
|
"depthStencilAttachment",
|
|
38238
38324
|
"depthStencilFormat",
|
|
38239
38325
|
"depthStoreOp",
|
|
38326
|
+
"depthType",
|
|
38240
38327
|
"depthUsage",
|
|
38241
38328
|
"depthWriteEnabled",
|
|
38242
38329
|
"deref",
|
|
@@ -38265,6 +38352,7 @@ var domprops = [
|
|
|
38265
38352
|
"deviceMemory",
|
|
38266
38353
|
"devicePixelContentBoxSize",
|
|
38267
38354
|
"devicePixelRatio",
|
|
38355
|
+
"devicePosture",
|
|
38268
38356
|
"deviceProtocol",
|
|
38269
38357
|
"deviceSubclass",
|
|
38270
38358
|
"deviceVersionMajor",
|
|
@@ -38304,6 +38392,8 @@ var domprops = [
|
|
|
38304
38392
|
"displayName",
|
|
38305
38393
|
"displayWidth",
|
|
38306
38394
|
"dispose",
|
|
38395
|
+
"disposeAsync",
|
|
38396
|
+
"disposed",
|
|
38307
38397
|
"disposition",
|
|
38308
38398
|
"distanceModel",
|
|
38309
38399
|
"div",
|
|
@@ -38325,6 +38415,7 @@ var domprops = [
|
|
|
38325
38415
|
"documentOrigins",
|
|
38326
38416
|
"documentPictureInPicture",
|
|
38327
38417
|
"documentURI",
|
|
38418
|
+
"documentURL",
|
|
38328
38419
|
"documentUrl",
|
|
38329
38420
|
"documentUrls",
|
|
38330
38421
|
"dolphin",
|
|
@@ -38511,7 +38602,9 @@ var domprops = [
|
|
|
38511
38602
|
"expandEntityReferences",
|
|
38512
38603
|
"expando",
|
|
38513
38604
|
"expansion",
|
|
38605
|
+
"expectedContextLanguages",
|
|
38514
38606
|
"expectedImprovement",
|
|
38607
|
+
"expectedInputLanguages",
|
|
38515
38608
|
"experiments",
|
|
38516
38609
|
"expiration",
|
|
38517
38610
|
"expirationTime",
|
|
@@ -38554,6 +38647,7 @@ var domprops = [
|
|
|
38554
38647
|
"fence",
|
|
38555
38648
|
"fenceSync",
|
|
38556
38649
|
"fetch",
|
|
38650
|
+
"fetchLater",
|
|
38557
38651
|
"fetchPriority",
|
|
38558
38652
|
"fetchStart",
|
|
38559
38653
|
"fftSize",
|
|
@@ -38585,6 +38679,7 @@ var domprops = [
|
|
|
38585
38679
|
"filterResY",
|
|
38586
38680
|
"filterUnits",
|
|
38587
38681
|
"filters",
|
|
38682
|
+
"finalResponseHeadersStart",
|
|
38588
38683
|
"finally",
|
|
38589
38684
|
"find",
|
|
38590
38685
|
"findIndex",
|
|
@@ -38598,6 +38693,7 @@ var domprops = [
|
|
|
38598
38693
|
"finished",
|
|
38599
38694
|
"fireEvent",
|
|
38600
38695
|
"firesTouchEvents",
|
|
38696
|
+
"first",
|
|
38601
38697
|
"firstChild",
|
|
38602
38698
|
"firstElementChild",
|
|
38603
38699
|
"firstInterimResponseStart",
|
|
@@ -38622,6 +38718,7 @@ var domprops = [
|
|
|
38622
38718
|
"flexGrow",
|
|
38623
38719
|
"flexShrink",
|
|
38624
38720
|
"flexWrap",
|
|
38721
|
+
"flip",
|
|
38625
38722
|
"flipX",
|
|
38626
38723
|
"flipY",
|
|
38627
38724
|
"float",
|
|
@@ -38683,6 +38780,7 @@ var domprops = [
|
|
|
38683
38780
|
"fontVariantAlternates",
|
|
38684
38781
|
"fontVariantCaps",
|
|
38685
38782
|
"fontVariantEastAsian",
|
|
38783
|
+
"fontVariantEmoji",
|
|
38686
38784
|
"fontVariantLigatures",
|
|
38687
38785
|
"fontVariantNumeric",
|
|
38688
38786
|
"fontVariantPosition",
|
|
@@ -38712,6 +38810,7 @@ var domprops = [
|
|
|
38712
38810
|
"formatToParts",
|
|
38713
38811
|
"forms",
|
|
38714
38812
|
"forward",
|
|
38813
|
+
"forwardWheel",
|
|
38715
38814
|
"forwardX",
|
|
38716
38815
|
"forwardY",
|
|
38717
38816
|
"forwardZ",
|
|
@@ -38788,6 +38887,7 @@ var domprops = [
|
|
|
38788
38887
|
"getAdjacentText",
|
|
38789
38888
|
"getAll",
|
|
38790
38889
|
"getAllKeys",
|
|
38890
|
+
"getAllRecords",
|
|
38791
38891
|
"getAllResponseHeaders",
|
|
38792
38892
|
"getAllowlistForFeature",
|
|
38793
38893
|
"getAnimations",
|
|
@@ -38836,11 +38936,13 @@ var domprops = [
|
|
|
38836
38936
|
"getCharNumAtPosition",
|
|
38837
38937
|
"getCharacteristic",
|
|
38838
38938
|
"getCharacteristics",
|
|
38939
|
+
"getClientCapabilities",
|
|
38839
38940
|
"getClientExtensionResults",
|
|
38840
38941
|
"getClientRect",
|
|
38841
38942
|
"getClientRects",
|
|
38842
38943
|
"getCoalescedEvents",
|
|
38843
38944
|
"getCompilationInfo",
|
|
38945
|
+
"getComposedRanges",
|
|
38844
38946
|
"getCompositionAlternatives",
|
|
38845
38947
|
"getComputedStyle",
|
|
38846
38948
|
"getComputedTextLength",
|
|
@@ -38964,6 +39066,8 @@ var domprops = [
|
|
|
38964
39066
|
"getNotifier",
|
|
38965
39067
|
"getNumberOfChars",
|
|
38966
39068
|
"getOffsetReferenceSpace",
|
|
39069
|
+
"getOrInsert",
|
|
39070
|
+
"getOrInsertComputed",
|
|
38967
39071
|
"getOutputTimestamp",
|
|
38968
39072
|
"getOverrideHistoryNavigationMode",
|
|
38969
39073
|
"getOverrideStyle",
|
|
@@ -38975,7 +39079,9 @@ var domprops = [
|
|
|
38975
39079
|
"getParameter",
|
|
38976
39080
|
"getParameters",
|
|
38977
39081
|
"getParent",
|
|
39082
|
+
"getPathData",
|
|
38978
39083
|
"getPathSegAtLength",
|
|
39084
|
+
"getPathSegmentAtLength",
|
|
38979
39085
|
"getPermissionWarningsByManifest",
|
|
38980
39086
|
"getPhotoCapabilities",
|
|
38981
39087
|
"getPhotoSettings",
|
|
@@ -39057,6 +39163,7 @@ var domprops = [
|
|
|
39057
39163
|
"getSupportedConstraints",
|
|
39058
39164
|
"getSupportedExtensions",
|
|
39059
39165
|
"getSupportedFormats",
|
|
39166
|
+
"getSupportedZoomLevels",
|
|
39060
39167
|
"getSyncParameter",
|
|
39061
39168
|
"getSynchronizationSources",
|
|
39062
39169
|
"getTags",
|
|
@@ -39229,6 +39336,7 @@ var domprops = [
|
|
|
39229
39336
|
"highWaterMark",
|
|
39230
39337
|
"highlight",
|
|
39231
39338
|
"highlights",
|
|
39339
|
+
"highlightsFromPoint",
|
|
39232
39340
|
"hint",
|
|
39233
39341
|
"hints",
|
|
39234
39342
|
"history",
|
|
@@ -39250,6 +39358,7 @@ var domprops = [
|
|
|
39250
39358
|
"hwTimestamp",
|
|
39251
39359
|
"hyphenate-character",
|
|
39252
39360
|
"hyphenateCharacter",
|
|
39361
|
+
"hyphenateLimitChars",
|
|
39253
39362
|
"hyphens",
|
|
39254
39363
|
"hypot",
|
|
39255
39364
|
"i18n",
|
|
@@ -39303,6 +39412,7 @@ var domprops = [
|
|
|
39303
39412
|
"incomingHighWaterMark",
|
|
39304
39413
|
"incomingMaxAge",
|
|
39305
39414
|
"incomingUnidirectionalStreams",
|
|
39415
|
+
"increaseZoomLevel",
|
|
39306
39416
|
"incremental",
|
|
39307
39417
|
"indeterminate",
|
|
39308
39418
|
"index",
|
|
@@ -39380,6 +39490,7 @@ var domprops = [
|
|
|
39380
39490
|
"inputEncoding",
|
|
39381
39491
|
"inputMethod",
|
|
39382
39492
|
"inputMode",
|
|
39493
|
+
"inputQuota",
|
|
39383
39494
|
"inputSource",
|
|
39384
39495
|
"inputSources",
|
|
39385
39496
|
"inputType",
|
|
@@ -39409,6 +39520,7 @@ var domprops = [
|
|
|
39409
39520
|
"insetInline",
|
|
39410
39521
|
"insetInlineEnd",
|
|
39411
39522
|
"insetInlineStart",
|
|
39523
|
+
"inspect",
|
|
39412
39524
|
"install",
|
|
39413
39525
|
"installing",
|
|
39414
39526
|
"instanceRoot",
|
|
@@ -39419,9 +39531,11 @@ var domprops = [
|
|
|
39419
39531
|
"int32",
|
|
39420
39532
|
"int8",
|
|
39421
39533
|
"integrity",
|
|
39534
|
+
"interactionCount",
|
|
39422
39535
|
"interactionId",
|
|
39423
39536
|
"interactionMode",
|
|
39424
39537
|
"intercept",
|
|
39538
|
+
"interestForElement",
|
|
39425
39539
|
"interfaceClass",
|
|
39426
39540
|
"interfaceName",
|
|
39427
39541
|
"interfaceNumber",
|
|
@@ -39471,6 +39585,7 @@ var domprops = [
|
|
|
39471
39585
|
"isEnabled",
|
|
39472
39586
|
"isEqual",
|
|
39473
39587
|
"isEqualNode",
|
|
39588
|
+
"isError",
|
|
39474
39589
|
"isExtended",
|
|
39475
39590
|
"isExtensible",
|
|
39476
39591
|
"isExternalCTAP2SecurityKeySupported",
|
|
@@ -39594,6 +39709,7 @@ var domprops = [
|
|
|
39594
39709
|
"language",
|
|
39595
39710
|
"languages",
|
|
39596
39711
|
"largeArcFlag",
|
|
39712
|
+
"last",
|
|
39597
39713
|
"lastChild",
|
|
39598
39714
|
"lastElementChild",
|
|
39599
39715
|
"lastError",
|
|
@@ -39826,6 +39942,7 @@ var domprops = [
|
|
|
39826
39942
|
"math-depth",
|
|
39827
39943
|
"math-style",
|
|
39828
39944
|
"mathDepth",
|
|
39945
|
+
"mathShift",
|
|
39829
39946
|
"mathStyle",
|
|
39830
39947
|
"matrix",
|
|
39831
39948
|
"matrixTransform",
|
|
@@ -39888,6 +40005,7 @@ var domprops = [
|
|
|
39888
40005
|
"maxWidth",
|
|
39889
40006
|
"maximumLatency",
|
|
39890
40007
|
"measure",
|
|
40008
|
+
"measureInputUsage",
|
|
39891
40009
|
"measureText",
|
|
39892
40010
|
"media",
|
|
39893
40011
|
"mediaCapabilities",
|
|
@@ -39949,6 +40067,7 @@ var domprops = [
|
|
|
39949
40067
|
"module",
|
|
39950
40068
|
"mount",
|
|
39951
40069
|
"move",
|
|
40070
|
+
"moveBefore",
|
|
39952
40071
|
"moveBy",
|
|
39953
40072
|
"moveEnd",
|
|
39954
40073
|
"moveFirst",
|
|
@@ -40292,6 +40411,7 @@ var domprops = [
|
|
|
40292
40411
|
"objectStoreNames",
|
|
40293
40412
|
"objectType",
|
|
40294
40413
|
"observe",
|
|
40414
|
+
"observedAttributes",
|
|
40295
40415
|
"occlusionQuerySet",
|
|
40296
40416
|
"of",
|
|
40297
40417
|
"off",
|
|
@@ -40422,6 +40542,7 @@ var domprops = [
|
|
|
40422
40542
|
"onclick",
|
|
40423
40543
|
"onclose",
|
|
40424
40544
|
"onclosing",
|
|
40545
|
+
"oncommand",
|
|
40425
40546
|
"oncompassneedscalibration",
|
|
40426
40547
|
"oncomplete",
|
|
40427
40548
|
"oncompositionend",
|
|
@@ -40459,6 +40580,7 @@ var domprops = [
|
|
|
40459
40580
|
"ondisplay",
|
|
40460
40581
|
"ondispose",
|
|
40461
40582
|
"ondownloading",
|
|
40583
|
+
"ondownloadprogress",
|
|
40462
40584
|
"ondrag",
|
|
40463
40585
|
"ondragend",
|
|
40464
40586
|
"ondragenter",
|
|
@@ -40735,6 +40857,7 @@ var domprops = [
|
|
|
40735
40857
|
"onwebkittransitionend",
|
|
40736
40858
|
"onwheel",
|
|
40737
40859
|
"onzoom",
|
|
40860
|
+
"onzoomlevelchange",
|
|
40738
40861
|
"opacity",
|
|
40739
40862
|
"open",
|
|
40740
40863
|
"openCursor",
|
|
@@ -40770,6 +40893,7 @@ var domprops = [
|
|
|
40770
40893
|
"originAgentCluster",
|
|
40771
40894
|
"originalPolicy",
|
|
40772
40895
|
"originalTarget",
|
|
40896
|
+
"ornaments",
|
|
40773
40897
|
"orphans",
|
|
40774
40898
|
"os",
|
|
40775
40899
|
"oscpu",
|
|
@@ -40790,8 +40914,10 @@ var domprops = [
|
|
|
40790
40914
|
"outlineWidth",
|
|
40791
40915
|
"outputBuffer",
|
|
40792
40916
|
"outputChannelCount",
|
|
40917
|
+
"outputLanguage",
|
|
40793
40918
|
"outputLatency",
|
|
40794
40919
|
"outputs",
|
|
40920
|
+
"overallProgress",
|
|
40795
40921
|
"overflow",
|
|
40796
40922
|
"overflow-anchor",
|
|
40797
40923
|
"overflow-block",
|
|
@@ -40880,6 +41006,7 @@ var domprops = [
|
|
|
40880
41006
|
"paint-order",
|
|
40881
41007
|
"paintOrder",
|
|
40882
41008
|
"paintRequests",
|
|
41009
|
+
"paintTime",
|
|
40883
41010
|
"paintType",
|
|
40884
41011
|
"paintWorklet",
|
|
40885
41012
|
"palette",
|
|
@@ -40921,6 +41048,7 @@ var domprops = [
|
|
|
40921
41048
|
"patternUnits",
|
|
40922
41049
|
"pause",
|
|
40923
41050
|
"pauseAnimations",
|
|
41051
|
+
"pauseDepthSensing",
|
|
40924
41052
|
"pauseDuration",
|
|
40925
41053
|
"pauseOnExit",
|
|
40926
41054
|
"pauseProfilers",
|
|
@@ -40953,6 +41081,8 @@ var domprops = [
|
|
|
40953
41081
|
"phoneticFamilyName",
|
|
40954
41082
|
"phoneticGivenName",
|
|
40955
41083
|
"photo",
|
|
41084
|
+
"phrase",
|
|
41085
|
+
"phrases",
|
|
40956
41086
|
"pictureInPictureChild",
|
|
40957
41087
|
"pictureInPictureElement",
|
|
40958
41088
|
"pictureInPictureEnabled",
|
|
@@ -40963,6 +41093,7 @@ var domprops = [
|
|
|
40963
41093
|
"pitch",
|
|
40964
41094
|
"pixelBottom",
|
|
40965
41095
|
"pixelDepth",
|
|
41096
|
+
"pixelFormat",
|
|
40966
41097
|
"pixelHeight",
|
|
40967
41098
|
"pixelLeft",
|
|
40968
41099
|
"pixelRight",
|
|
@@ -41033,6 +41164,9 @@ var domprops = [
|
|
|
41033
41164
|
"positionAlign",
|
|
41034
41165
|
"positionAnchor",
|
|
41035
41166
|
"positionArea",
|
|
41167
|
+
"positionTry",
|
|
41168
|
+
"positionTryFallbacks",
|
|
41169
|
+
"positionVisibility",
|
|
41036
41170
|
"positionX",
|
|
41037
41171
|
"positionY",
|
|
41038
41172
|
"positionZ",
|
|
@@ -41059,6 +41193,7 @@ var domprops = [
|
|
|
41059
41193
|
"presentation",
|
|
41060
41194
|
"presentationArea",
|
|
41061
41195
|
"presentationStyle",
|
|
41196
|
+
"presentationTime",
|
|
41062
41197
|
"preserveAlpha",
|
|
41063
41198
|
"preserveAspectRatio",
|
|
41064
41199
|
"preserveAspectRatioString",
|
|
@@ -41097,6 +41232,7 @@ var domprops = [
|
|
|
41097
41232
|
"probeSpace",
|
|
41098
41233
|
"process",
|
|
41099
41234
|
"processIceMessage",
|
|
41235
|
+
"processLocally",
|
|
41100
41236
|
"processingEnd",
|
|
41101
41237
|
"processingStart",
|
|
41102
41238
|
"processorOptions",
|
|
@@ -41109,6 +41245,7 @@ var domprops = [
|
|
|
41109
41245
|
"profiles",
|
|
41110
41246
|
"projectionMatrix",
|
|
41111
41247
|
"promise",
|
|
41248
|
+
"promising",
|
|
41112
41249
|
"prompt",
|
|
41113
41250
|
"properties",
|
|
41114
41251
|
"propertyIsEnumerable",
|
|
@@ -41153,6 +41290,7 @@ var domprops = [
|
|
|
41153
41290
|
"querySet",
|
|
41154
41291
|
"queue",
|
|
41155
41292
|
"queueMicrotask",
|
|
41293
|
+
"quota",
|
|
41156
41294
|
"quote",
|
|
41157
41295
|
"quotes",
|
|
41158
41296
|
"r",
|
|
@@ -41331,6 +41469,7 @@ var domprops = [
|
|
|
41331
41469
|
"reportError",
|
|
41332
41470
|
"reportEvent",
|
|
41333
41471
|
"reportId",
|
|
41472
|
+
"reportOnly",
|
|
41334
41473
|
"reportValidity",
|
|
41335
41474
|
"request",
|
|
41336
41475
|
"requestAdapter",
|
|
@@ -41366,6 +41505,7 @@ var domprops = [
|
|
|
41366
41505
|
"requestVideoFrameCallback",
|
|
41367
41506
|
"requestViewportScale",
|
|
41368
41507
|
"requestWindow",
|
|
41508
|
+
"requested",
|
|
41369
41509
|
"requestingWindow",
|
|
41370
41510
|
"requireInteraction",
|
|
41371
41511
|
"required",
|
|
@@ -41376,6 +41516,7 @@ var domprops = [
|
|
|
41376
41516
|
"resetLatency",
|
|
41377
41517
|
"resetPose",
|
|
41378
41518
|
"resetTransform",
|
|
41519
|
+
"resetZoomLevel",
|
|
41379
41520
|
"resizable",
|
|
41380
41521
|
"resize",
|
|
41381
41522
|
"resizeBy",
|
|
@@ -41400,14 +41541,17 @@ var domprops = [
|
|
|
41400
41541
|
"restartAfterDelay",
|
|
41401
41542
|
"restartIce",
|
|
41402
41543
|
"restore",
|
|
41544
|
+
"restrictTo",
|
|
41403
41545
|
"result",
|
|
41404
41546
|
"resultIndex",
|
|
41405
41547
|
"resultType",
|
|
41406
41548
|
"results",
|
|
41407
41549
|
"resume",
|
|
41550
|
+
"resumeDepthSensing",
|
|
41408
41551
|
"resumeProfilers",
|
|
41409
41552
|
"resumeTransformFeedback",
|
|
41410
41553
|
"retry",
|
|
41554
|
+
"returnType",
|
|
41411
41555
|
"returnValue",
|
|
41412
41556
|
"rev",
|
|
41413
41557
|
"reverse",
|
|
@@ -41606,12 +41750,14 @@ var domprops = [
|
|
|
41606
41750
|
"searchParams",
|
|
41607
41751
|
"sectionRowIndex",
|
|
41608
41752
|
"secureConnectionStart",
|
|
41753
|
+
"securePaymentConfirmationAvailability",
|
|
41609
41754
|
"security",
|
|
41610
41755
|
"seed",
|
|
41611
41756
|
"seek",
|
|
41612
41757
|
"seekToNextFrame",
|
|
41613
41758
|
"seekable",
|
|
41614
41759
|
"seeking",
|
|
41760
|
+
"segments",
|
|
41615
41761
|
"select",
|
|
41616
41762
|
"selectAllChildren",
|
|
41617
41763
|
"selectAlternateInterface",
|
|
@@ -41746,6 +41892,7 @@ var domprops = [
|
|
|
41746
41892
|
"setPaint",
|
|
41747
41893
|
"setParameter",
|
|
41748
41894
|
"setParameters",
|
|
41895
|
+
"setPathData",
|
|
41749
41896
|
"setPeriodicWave",
|
|
41750
41897
|
"setPipeline",
|
|
41751
41898
|
"setPointerCapture",
|
|
@@ -41844,6 +41991,7 @@ var domprops = [
|
|
|
41844
41991
|
"shapeOutside",
|
|
41845
41992
|
"shapeRendering",
|
|
41846
41993
|
"share",
|
|
41994
|
+
"sharedContext",
|
|
41847
41995
|
"sharedStorage",
|
|
41848
41996
|
"sharedStorageWritable",
|
|
41849
41997
|
"sheet",
|
|
@@ -41868,6 +42016,9 @@ var domprops = [
|
|
|
41868
42016
|
"sidebarAction",
|
|
41869
42017
|
"sign",
|
|
41870
42018
|
"signal",
|
|
42019
|
+
"signalAllAcceptedCredentials",
|
|
42020
|
+
"signalCurrentUserDetails",
|
|
42021
|
+
"signalUnknownCredential",
|
|
41871
42022
|
"signalingState",
|
|
41872
42023
|
"signature",
|
|
41873
42024
|
"silent",
|
|
@@ -41909,9 +42060,11 @@ var domprops = [
|
|
|
41909
42060
|
"sourceBuffers",
|
|
41910
42061
|
"sourceCapabilities",
|
|
41911
42062
|
"sourceCharPosition",
|
|
42063
|
+
"sourceElement",
|
|
41912
42064
|
"sourceFile",
|
|
41913
42065
|
"sourceFunctionName",
|
|
41914
42066
|
"sourceIndex",
|
|
42067
|
+
"sourceLanguage",
|
|
41915
42068
|
"sourceMap",
|
|
41916
42069
|
"sourceURL",
|
|
41917
42070
|
"sources",
|
|
@@ -42052,8 +42205,12 @@ var domprops = [
|
|
|
42052
42205
|
"styleSheet",
|
|
42053
42206
|
"styleSheetSets",
|
|
42054
42207
|
"styleSheets",
|
|
42208
|
+
"styleset",
|
|
42209
|
+
"stylistic",
|
|
42055
42210
|
"sub",
|
|
42056
42211
|
"subarray",
|
|
42212
|
+
"subgroupMaxSize",
|
|
42213
|
+
"subgroupMinSize",
|
|
42057
42214
|
"subject",
|
|
42058
42215
|
"submit",
|
|
42059
42216
|
"submitFrame",
|
|
@@ -42066,6 +42223,9 @@ var domprops = [
|
|
|
42066
42223
|
"subtree",
|
|
42067
42224
|
"suffix",
|
|
42068
42225
|
"suffixes",
|
|
42226
|
+
"sumPrecise",
|
|
42227
|
+
"summarize",
|
|
42228
|
+
"summarizeStreaming",
|
|
42069
42229
|
"summary",
|
|
42070
42230
|
"sup",
|
|
42071
42231
|
"supported",
|
|
@@ -42076,6 +42236,7 @@ var domprops = [
|
|
|
42076
42236
|
"supportsFiber",
|
|
42077
42237
|
"supportsSession",
|
|
42078
42238
|
"supportsText",
|
|
42239
|
+
"suppressed",
|
|
42079
42240
|
"surfaceScale",
|
|
42080
42241
|
"surroundContents",
|
|
42081
42242
|
"suspend",
|
|
@@ -42088,7 +42249,9 @@ var domprops = [
|
|
|
42088
42249
|
"svw",
|
|
42089
42250
|
"swapCache",
|
|
42090
42251
|
"swapNode",
|
|
42252
|
+
"swash",
|
|
42091
42253
|
"sweepFlag",
|
|
42254
|
+
"switchMap",
|
|
42092
42255
|
"symbols",
|
|
42093
42256
|
"symmetricDifference",
|
|
42094
42257
|
"sync",
|
|
@@ -42122,12 +42285,14 @@ var domprops = [
|
|
|
42122
42285
|
"take",
|
|
42123
42286
|
"takePhoto",
|
|
42124
42287
|
"takeRecords",
|
|
42288
|
+
"takeUntil",
|
|
42125
42289
|
"tan",
|
|
42126
42290
|
"tangentialPressure",
|
|
42127
42291
|
"tanh",
|
|
42128
42292
|
"target",
|
|
42129
42293
|
"targetAddressSpace",
|
|
42130
42294
|
"targetElement",
|
|
42295
|
+
"targetLanguage",
|
|
42131
42296
|
"targetRayMode",
|
|
42132
42297
|
"targetRaySpace",
|
|
42133
42298
|
"targetTouches",
|
|
@@ -42186,6 +42351,7 @@ var domprops = [
|
|
|
42186
42351
|
"textDecoration",
|
|
42187
42352
|
"textDecorationBlink",
|
|
42188
42353
|
"textDecorationColor",
|
|
42354
|
+
"textDecorationInset",
|
|
42189
42355
|
"textDecorationLine",
|
|
42190
42356
|
"textDecorationLineThrough",
|
|
42191
42357
|
"textDecorationNone",
|
|
@@ -42276,6 +42442,7 @@ var domprops = [
|
|
|
42276
42442
|
"toString",
|
|
42277
42443
|
"toStringTag",
|
|
42278
42444
|
"toSum",
|
|
42445
|
+
"toTemporalInstant",
|
|
42279
42446
|
"toTimeString",
|
|
42280
42447
|
"toUTCString",
|
|
42281
42448
|
"toUpperCase",
|
|
@@ -42347,6 +42514,7 @@ var domprops = [
|
|
|
42347
42514
|
"transitionTimingFunction",
|
|
42348
42515
|
"translate",
|
|
42349
42516
|
"translateSelf",
|
|
42517
|
+
"translateStreaming",
|
|
42350
42518
|
"translationX",
|
|
42351
42519
|
"translationY",
|
|
42352
42520
|
"transport",
|
|
@@ -42495,6 +42663,7 @@ var domprops = [
|
|
|
42495
42663
|
"usbVersionMajor",
|
|
42496
42664
|
"usbVersionMinor",
|
|
42497
42665
|
"usbVersionSubminor",
|
|
42666
|
+
"use",
|
|
42498
42667
|
"useCurrentView",
|
|
42499
42668
|
"useMap",
|
|
42500
42669
|
"useProgram",
|
|
@@ -42502,6 +42671,7 @@ var domprops = [
|
|
|
42502
42671
|
"user-select",
|
|
42503
42672
|
"userActivation",
|
|
42504
42673
|
"userAgent",
|
|
42674
|
+
"userAgentAllowsProtocol",
|
|
42505
42675
|
"userAgentData",
|
|
42506
42676
|
"userChoice",
|
|
42507
42677
|
"userHandle",
|
|
@@ -42585,6 +42755,8 @@ var domprops = [
|
|
|
42585
42755
|
"viewTarget",
|
|
42586
42756
|
"viewTargetString",
|
|
42587
42757
|
"viewTransition",
|
|
42758
|
+
"viewTransitionClass",
|
|
42759
|
+
"viewTransitionName",
|
|
42588
42760
|
"viewport",
|
|
42589
42761
|
"viewportAnchorX",
|
|
42590
42762
|
"viewportAnchorY",
|
|
@@ -42819,6 +42991,7 @@ var domprops = [
|
|
|
42819
42991
|
"wheelDelta",
|
|
42820
42992
|
"wheelDeltaX",
|
|
42821
42993
|
"wheelDeltaY",
|
|
42994
|
+
"when",
|
|
42822
42995
|
"whenDefined",
|
|
42823
42996
|
"which",
|
|
42824
42997
|
"white-space",
|
|
@@ -42846,6 +43019,10 @@ var domprops = [
|
|
|
42846
43019
|
"wordBreak",
|
|
42847
43020
|
"wordSpacing",
|
|
42848
43021
|
"wordWrap",
|
|
43022
|
+
"workerCacheLookupStart",
|
|
43023
|
+
"workerFinalSourceType",
|
|
43024
|
+
"workerMatchedSourceType",
|
|
43025
|
+
"workerRouterEvaluationStart",
|
|
42849
43026
|
"workerStart",
|
|
42850
43027
|
"worklet",
|
|
42851
43028
|
"wow64",
|
|
@@ -42890,6 +43067,7 @@ var domprops = [
|
|
|
42890
43067
|
"zIndex",
|
|
42891
43068
|
"zoom",
|
|
42892
43069
|
"zoomAndPan",
|
|
43070
|
+
"zoomLevel",
|
|
42893
43071
|
"zoomRectScreen",
|
|
42894
43072
|
];
|
|
42895
43073
|
|