terser 5.19.4 → 5.21.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 +10 -0
- package/README.md +3 -4
- package/dist/bundle.min.js +364 -122
- package/lib/compress/common.js +1 -1
- package/lib/compress/drop-unused.js +8 -8
- package/lib/compress/global-defs.js +92 -0
- package/lib/compress/index.js +33 -30
- package/lib/compress/inference.js +1 -79
- package/lib/compress/inline.js +10 -3
- package/lib/minify.js +3 -0
- package/lib/mozilla-ast.js +3 -5
- package/lib/output.js +2 -1
- package/package.json +1 -1
- package/tools/domprops.js +231 -1
- package/tools/terser.d.ts +4 -1
- package/bin/terser.mjs +0 -18
package/dist/bundle.min.js
CHANGED
@@ -7127,17 +7127,15 @@ def_transform(AST_PrefixedTemplateString, function(self, tw) {
|
|
7127
7127
|
(function() {
|
7128
7128
|
|
7129
7129
|
var normalize_directives = function(body) {
|
7130
|
-
var in_directive = true;
|
7131
|
-
|
7132
7130
|
for (var i = 0; i < body.length; i++) {
|
7133
|
-
if (
|
7131
|
+
if (body[i] instanceof AST_Statement && body[i].body instanceof AST_String) {
|
7134
7132
|
body[i] = new AST_Directive({
|
7135
7133
|
start: body[i].start,
|
7136
7134
|
end: body[i].end,
|
7137
7135
|
value: body[i].body.value
|
7138
7136
|
});
|
7139
|
-
} else
|
7140
|
-
|
7137
|
+
} else {
|
7138
|
+
return body;
|
7141
7139
|
}
|
7142
7140
|
}
|
7143
7141
|
|
@@ -9744,7 +9742,8 @@ function OutputStream(options) {
|
|
9744
9742
|
) {
|
9745
9743
|
return true;
|
9746
9744
|
}
|
9747
|
-
return p instanceof AST_PropAccess && p.expression === this
|
9745
|
+
return p instanceof AST_PropAccess && p.expression === this
|
9746
|
+
|| p instanceof AST_Conditional && p.condition === this;
|
9748
9747
|
});
|
9749
9748
|
|
9750
9749
|
// same goes for an object literal (as in AST_Function), because
|
@@ -13192,7 +13191,7 @@ function retain_top_func(fn, compressor) {
|
|
13192
13191
|
&& fn instanceof AST_Defun
|
13193
13192
|
&& has_flag(fn, TOP)
|
13194
13193
|
&& fn.name
|
13195
|
-
&& compressor.top_retain(fn.name);
|
13194
|
+
&& compressor.top_retain(fn.name.definition());
|
13196
13195
|
}
|
13197
13196
|
|
13198
13197
|
/***********************************************************************
|
@@ -14041,80 +14040,6 @@ function is_lhs(node, parent) {
|
|
14041
14040
|
if (parent instanceof AST_ForIn && parent.init === node) return node;
|
14042
14041
|
}
|
14043
14042
|
|
14044
|
-
(function(def_find_defs) {
|
14045
|
-
function to_node(value, orig) {
|
14046
|
-
if (value instanceof AST_Node) {
|
14047
|
-
if (!(value instanceof AST_Constant)) {
|
14048
|
-
// Value may be a function, an array including functions and even a complex assign / block expression,
|
14049
|
-
// so it should never be shared in different places.
|
14050
|
-
// Otherwise wrong information may be used in the compression phase
|
14051
|
-
value = value.clone(true);
|
14052
|
-
}
|
14053
|
-
return make_node(value.CTOR, orig, value);
|
14054
|
-
}
|
14055
|
-
if (Array.isArray(value)) return make_node(AST_Array, orig, {
|
14056
|
-
elements: value.map(function(value) {
|
14057
|
-
return to_node(value, orig);
|
14058
|
-
})
|
14059
|
-
});
|
14060
|
-
if (value && typeof value == "object") {
|
14061
|
-
var props = [];
|
14062
|
-
for (var key in value) if (HOP(value, key)) {
|
14063
|
-
props.push(make_node(AST_ObjectKeyVal, orig, {
|
14064
|
-
key: key,
|
14065
|
-
value: to_node(value[key], orig)
|
14066
|
-
}));
|
14067
|
-
}
|
14068
|
-
return make_node(AST_Object, orig, {
|
14069
|
-
properties: props
|
14070
|
-
});
|
14071
|
-
}
|
14072
|
-
return make_node_from_constant(value, orig);
|
14073
|
-
}
|
14074
|
-
|
14075
|
-
AST_Toplevel.DEFMETHOD("resolve_defines", function(compressor) {
|
14076
|
-
if (!compressor.option("global_defs")) return this;
|
14077
|
-
this.figure_out_scope({ ie8: compressor.option("ie8") });
|
14078
|
-
return this.transform(new TreeTransformer(function(node) {
|
14079
|
-
var def = node._find_defs(compressor, "");
|
14080
|
-
if (!def) return;
|
14081
|
-
var level = 0, child = node, parent;
|
14082
|
-
while (parent = this.parent(level++)) {
|
14083
|
-
if (!(parent instanceof AST_PropAccess)) break;
|
14084
|
-
if (parent.expression !== child) break;
|
14085
|
-
child = parent;
|
14086
|
-
}
|
14087
|
-
if (is_lhs(child, parent)) {
|
14088
|
-
return;
|
14089
|
-
}
|
14090
|
-
return def;
|
14091
|
-
}));
|
14092
|
-
});
|
14093
|
-
def_find_defs(AST_Node, noop);
|
14094
|
-
def_find_defs(AST_Chain, function(compressor, suffix) {
|
14095
|
-
return this.expression._find_defs(compressor, suffix);
|
14096
|
-
});
|
14097
|
-
def_find_defs(AST_Dot, function(compressor, suffix) {
|
14098
|
-
return this.expression._find_defs(compressor, "." + this.property + suffix);
|
14099
|
-
});
|
14100
|
-
def_find_defs(AST_SymbolDeclaration, function() {
|
14101
|
-
if (!this.global()) return;
|
14102
|
-
});
|
14103
|
-
def_find_defs(AST_SymbolRef, function(compressor, suffix) {
|
14104
|
-
if (!this.global()) return;
|
14105
|
-
var defines = compressor.option("global_defs");
|
14106
|
-
var name = this.name + suffix;
|
14107
|
-
if (HOP(defines, name)) return to_node(defines[name], this);
|
14108
|
-
});
|
14109
|
-
def_find_defs(AST_ImportMeta, function(compressor, suffix) {
|
14110
|
-
var defines = compressor.option("global_defs");
|
14111
|
-
var name = "import.meta" + suffix;
|
14112
|
-
if (HOP(defines, name)) return to_node(defines[name], this);
|
14113
|
-
});
|
14114
|
-
})(function(node, func) {
|
14115
|
-
node.DEFMETHOD("_find_defs", func);
|
14116
|
-
});
|
14117
|
-
|
14118
14043
|
// method to negate an expression
|
14119
14044
|
(function(def_negate) {
|
14120
14045
|
function basic_negation(exp) {
|
@@ -15171,7 +15096,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15171
15096
|
var fixed_ids = new Map();
|
15172
15097
|
if (self instanceof AST_Toplevel && compressor.top_retain) {
|
15173
15098
|
self.variables.forEach(function(def) {
|
15174
|
-
if (compressor.top_retain(def)
|
15099
|
+
if (compressor.top_retain(def)) {
|
15175
15100
|
in_use_ids.set(def.id, def);
|
15176
15101
|
}
|
15177
15102
|
});
|
@@ -15186,9 +15111,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15186
15111
|
node.argnames.forEach(function(argname) {
|
15187
15112
|
if (!(argname instanceof AST_SymbolDeclaration)) return;
|
15188
15113
|
var def = argname.definition();
|
15189
|
-
|
15190
|
-
in_use_ids.set(def.id, def);
|
15191
|
-
}
|
15114
|
+
in_use_ids.set(def.id, def);
|
15192
15115
|
});
|
15193
15116
|
}
|
15194
15117
|
if (node === self) return;
|
@@ -15201,7 +15124,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15201
15124
|
var node_def = node.name.definition();
|
15202
15125
|
const in_export = tw.parent() instanceof AST_Export;
|
15203
15126
|
if (in_export || !drop_funcs && scope === self) {
|
15204
|
-
if (node_def.global
|
15127
|
+
if (node_def.global) {
|
15205
15128
|
in_use_ids.set(node_def.id, node_def);
|
15206
15129
|
}
|
15207
15130
|
}
|
@@ -15209,10 +15132,12 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15209
15132
|
map_add(initializations, node_def.id, node);
|
15210
15133
|
return true; // don't go in nested scopes
|
15211
15134
|
}
|
15212
|
-
|
15135
|
+
// In the root scope, we drop things. In inner scopes, we just check for uses.
|
15136
|
+
const in_root_scope = scope === self;
|
15137
|
+
if (node instanceof AST_SymbolFunarg && in_root_scope) {
|
15213
15138
|
map_add(var_defs_by_id, node.definition().id, node);
|
15214
15139
|
}
|
15215
|
-
if (node instanceof AST_Definitions &&
|
15140
|
+
if (node instanceof AST_Definitions && in_root_scope) {
|
15216
15141
|
const in_export = tw.parent() instanceof AST_Export;
|
15217
15142
|
node.definitions.forEach(function(def) {
|
15218
15143
|
if (def.name instanceof AST_SymbolVar) {
|
@@ -15222,7 +15147,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(compressor) {
|
|
15222
15147
|
walk(def.name, node => {
|
15223
15148
|
if (node instanceof AST_SymbolDeclaration) {
|
15224
15149
|
const def = node.definition();
|
15225
|
-
if (def.global
|
15150
|
+
if (def.global) {
|
15226
15151
|
in_use_ids.set(def.id, def);
|
15227
15152
|
}
|
15228
15153
|
}
|
@@ -17905,8 +17830,9 @@ function inline_into_symbolref(self, compressor) {
|
|
17905
17830
|
return self;
|
17906
17831
|
}
|
17907
17832
|
|
17908
|
-
function inline_into_call(self,
|
17833
|
+
function inline_into_call(self, compressor) {
|
17909
17834
|
var exp = self.expression;
|
17835
|
+
var fn = exp;
|
17910
17836
|
var simple_args = self.args.every((arg) => !(arg instanceof AST_Expansion));
|
17911
17837
|
|
17912
17838
|
if (compressor.option("reduce_vars")
|
@@ -17914,9 +17840,15 @@ function inline_into_call(self, fn, compressor) {
|
|
17914
17840
|
&& !has_annotation(self, _NOINLINE)
|
17915
17841
|
) {
|
17916
17842
|
const fixed = fn.fixed_value();
|
17917
|
-
|
17918
|
-
|
17843
|
+
|
17844
|
+
if (
|
17845
|
+
retain_top_func(fixed, compressor)
|
17846
|
+
|| !compressor.toplevel.funcs && exp.definition().global
|
17847
|
+
) {
|
17848
|
+
return self;
|
17919
17849
|
}
|
17850
|
+
|
17851
|
+
fn = fixed;
|
17920
17852
|
}
|
17921
17853
|
|
17922
17854
|
var is_func = fn instanceof AST_Lambda;
|
@@ -18247,6 +18179,80 @@ function inline_into_call(self, fn, compressor) {
|
|
18247
18179
|
}
|
18248
18180
|
}
|
18249
18181
|
|
18182
|
+
(function(def_find_defs) {
|
18183
|
+
function to_node(value, orig) {
|
18184
|
+
if (value instanceof AST_Node) {
|
18185
|
+
if (!(value instanceof AST_Constant)) {
|
18186
|
+
// Value may be a function, an array including functions and even a complex assign / block expression,
|
18187
|
+
// so it should never be shared in different places.
|
18188
|
+
// Otherwise wrong information may be used in the compression phase
|
18189
|
+
value = value.clone(true);
|
18190
|
+
}
|
18191
|
+
return make_node(value.CTOR, orig, value);
|
18192
|
+
}
|
18193
|
+
if (Array.isArray(value)) return make_node(AST_Array, orig, {
|
18194
|
+
elements: value.map(function(value) {
|
18195
|
+
return to_node(value, orig);
|
18196
|
+
})
|
18197
|
+
});
|
18198
|
+
if (value && typeof value == "object") {
|
18199
|
+
var props = [];
|
18200
|
+
for (var key in value) if (HOP(value, key)) {
|
18201
|
+
props.push(make_node(AST_ObjectKeyVal, orig, {
|
18202
|
+
key: key,
|
18203
|
+
value: to_node(value[key], orig)
|
18204
|
+
}));
|
18205
|
+
}
|
18206
|
+
return make_node(AST_Object, orig, {
|
18207
|
+
properties: props
|
18208
|
+
});
|
18209
|
+
}
|
18210
|
+
return make_node_from_constant(value, orig);
|
18211
|
+
}
|
18212
|
+
|
18213
|
+
AST_Toplevel.DEFMETHOD("resolve_defines", function(compressor) {
|
18214
|
+
if (!compressor.option("global_defs")) return this;
|
18215
|
+
this.figure_out_scope({ ie8: compressor.option("ie8") });
|
18216
|
+
return this.transform(new TreeTransformer(function(node) {
|
18217
|
+
var def = node._find_defs(compressor, "");
|
18218
|
+
if (!def) return;
|
18219
|
+
var level = 0, child = node, parent;
|
18220
|
+
while (parent = this.parent(level++)) {
|
18221
|
+
if (!(parent instanceof AST_PropAccess)) break;
|
18222
|
+
if (parent.expression !== child) break;
|
18223
|
+
child = parent;
|
18224
|
+
}
|
18225
|
+
if (is_lhs(child, parent)) {
|
18226
|
+
return;
|
18227
|
+
}
|
18228
|
+
return def;
|
18229
|
+
}));
|
18230
|
+
});
|
18231
|
+
def_find_defs(AST_Node, noop);
|
18232
|
+
def_find_defs(AST_Chain, function(compressor, suffix) {
|
18233
|
+
return this.expression._find_defs(compressor, suffix);
|
18234
|
+
});
|
18235
|
+
def_find_defs(AST_Dot, function(compressor, suffix) {
|
18236
|
+
return this.expression._find_defs(compressor, "." + this.property + suffix);
|
18237
|
+
});
|
18238
|
+
def_find_defs(AST_SymbolDeclaration, function() {
|
18239
|
+
if (!this.global()) return;
|
18240
|
+
});
|
18241
|
+
def_find_defs(AST_SymbolRef, function(compressor, suffix) {
|
18242
|
+
if (!this.global()) return;
|
18243
|
+
var defines = compressor.option("global_defs");
|
18244
|
+
var name = this.name + suffix;
|
18245
|
+
if (HOP(defines, name)) return to_node(defines[name], this);
|
18246
|
+
});
|
18247
|
+
def_find_defs(AST_ImportMeta, function(compressor, suffix) {
|
18248
|
+
var defines = compressor.option("global_defs");
|
18249
|
+
var name = "import.meta" + suffix;
|
18250
|
+
if (HOP(defines, name)) return to_node(defines[name], this);
|
18251
|
+
});
|
18252
|
+
})(function(node, func) {
|
18253
|
+
node.DEFMETHOD("_find_defs", func);
|
18254
|
+
});
|
18255
|
+
|
18250
18256
|
/***********************************************************************
|
18251
18257
|
|
18252
18258
|
A JavaScript tokenizer / parser / beautifier / compressor.
|
@@ -18465,7 +18471,7 @@ class Compressor extends TreeWalker {
|
|
18465
18471
|
this._toplevel.figure_out_scope(mangle);
|
18466
18472
|
if (pass === 0 && this.option("drop_console")) {
|
18467
18473
|
// must be run before reduce_vars and compress pass
|
18468
|
-
this._toplevel = this._toplevel.drop_console();
|
18474
|
+
this._toplevel = this._toplevel.drop_console(this.option("drop_console"));
|
18469
18475
|
}
|
18470
18476
|
if (pass > 0 || this.option("reduce_vars")) {
|
18471
18477
|
this._toplevel.reset_opt_flags(this);
|
@@ -18544,19 +18550,30 @@ def_optimize(AST_Node, function(self) {
|
|
18544
18550
|
return self;
|
18545
18551
|
});
|
18546
18552
|
|
18547
|
-
AST_Toplevel.DEFMETHOD("drop_console", function() {
|
18553
|
+
AST_Toplevel.DEFMETHOD("drop_console", function(options) {
|
18554
|
+
var isArray = Array.isArray(options);
|
18555
|
+
|
18548
18556
|
return this.transform(new TreeTransformer(function(self) {
|
18549
|
-
if (self.TYPE
|
18550
|
-
|
18551
|
-
|
18552
|
-
|
18553
|
-
|
18554
|
-
|
18555
|
-
|
18556
|
-
|
18557
|
-
|
18558
|
-
|
18559
|
-
|
18557
|
+
if (self.TYPE !== "Call") {
|
18558
|
+
return;
|
18559
|
+
}
|
18560
|
+
|
18561
|
+
var exp = self.expression;
|
18562
|
+
|
18563
|
+
if (!(exp instanceof AST_PropAccess)) {
|
18564
|
+
return;
|
18565
|
+
}
|
18566
|
+
|
18567
|
+
if (isArray && options.indexOf(exp.property) === -1) {
|
18568
|
+
return;
|
18569
|
+
}
|
18570
|
+
|
18571
|
+
var name = exp.expression;
|
18572
|
+
while (name.expression) {
|
18573
|
+
name = name.expression;
|
18574
|
+
}
|
18575
|
+
if (is_undeclared_ref(name) && name.name == "console") {
|
18576
|
+
return make_node(AST_Undefined, self);
|
18560
18577
|
}
|
18561
18578
|
}));
|
18562
18579
|
});
|
@@ -19678,18 +19695,10 @@ def_optimize(AST_Call, function(self, compressor) {
|
|
19678
19695
|
var exp = self.expression;
|
19679
19696
|
var fn = exp;
|
19680
19697
|
inline_array_like_spread(self.args);
|
19681
|
-
var simple_args = self.args.every((arg) =>
|
19682
|
-
!(arg instanceof AST_Expansion)
|
19683
|
-
);
|
19698
|
+
var simple_args = self.args.every((arg) => !(arg instanceof AST_Expansion));
|
19684
19699
|
|
19685
|
-
if (compressor.option("reduce_vars")
|
19686
|
-
|
19687
|
-
&& !has_annotation(self, _NOINLINE)
|
19688
|
-
) {
|
19689
|
-
const fixed = fn.fixed_value();
|
19690
|
-
if (!retain_top_func(fixed, compressor)) {
|
19691
|
-
fn = fixed;
|
19692
|
-
}
|
19700
|
+
if (compressor.option("reduce_vars") && fn instanceof AST_SymbolRef) {
|
19701
|
+
fn = fn.fixed_value();
|
19693
19702
|
}
|
19694
19703
|
|
19695
19704
|
var is_func = fn instanceof AST_Lambda;
|
@@ -19997,7 +20006,7 @@ def_optimize(AST_Call, function(self, compressor) {
|
|
19997
20006
|
}
|
19998
20007
|
}
|
19999
20008
|
|
20000
|
-
return inline_into_call(self,
|
20009
|
+
return inline_into_call(self, compressor);
|
20001
20010
|
});
|
20002
20011
|
|
20003
20012
|
def_optimize(AST_New, function(self, compressor) {
|
@@ -21830,10 +21839,10 @@ def_optimize(AST_Destructuring, function(self, compressor) {
|
|
21830
21839
|
if (def.references.length) return true;
|
21831
21840
|
if (!def.global) return false;
|
21832
21841
|
if (compressor.toplevel.vars) {
|
21833
|
-
|
21834
|
-
|
21835
|
-
|
21836
|
-
|
21842
|
+
if (compressor.top_retain) {
|
21843
|
+
return compressor.top_retain(def);
|
21844
|
+
}
|
21845
|
+
return false;
|
21837
21846
|
}
|
21838
21847
|
return true;
|
21839
21848
|
}
|
@@ -22156,6 +22165,7 @@ var domprops = [
|
|
22156
22165
|
"ADDITION",
|
22157
22166
|
"ALIASED_LINE_WIDTH_RANGE",
|
22158
22167
|
"ALIASED_POINT_SIZE_RANGE",
|
22168
|
+
"ALL",
|
22159
22169
|
"ALLOW_KEYBOARD_INPUT",
|
22160
22170
|
"ALLPASS",
|
22161
22171
|
"ALPHA",
|
@@ -22225,6 +22235,7 @@ var domprops = [
|
|
22225
22235
|
"BLEND_EQUATION_RGB",
|
22226
22236
|
"BLEND_SRC_ALPHA",
|
22227
22237
|
"BLEND_SRC_RGB",
|
22238
|
+
"BLUE",
|
22228
22239
|
"BLUE_BITS",
|
22229
22240
|
"BLUR",
|
22230
22241
|
"BOOL",
|
@@ -22307,6 +22318,7 @@ var domprops = [
|
|
22307
22318
|
"COMPRESSED_RGBA_S3TC_DXT5_EXT",
|
22308
22319
|
"COMPRESSED_RGB_S3TC_DXT1_EXT",
|
22309
22320
|
"COMPRESSED_TEXTURE_FORMATS",
|
22321
|
+
"COMPUTE",
|
22310
22322
|
"CONDITION_SATISFIED",
|
22311
22323
|
"CONFIGURATION_UNSUPPORTED",
|
22312
22324
|
"CONNECTING",
|
@@ -22315,8 +22327,10 @@ var domprops = [
|
|
22315
22327
|
"CONSTRAINT_ERR",
|
22316
22328
|
"CONTEXT_LOST_WEBGL",
|
22317
22329
|
"CONTROL_MASK",
|
22330
|
+
"COPY_DST",
|
22318
22331
|
"COPY_READ_BUFFER",
|
22319
22332
|
"COPY_READ_BUFFER_BINDING",
|
22333
|
+
"COPY_SRC",
|
22320
22334
|
"COPY_WRITE_BUFFER",
|
22321
22335
|
"COPY_WRITE_BUFFER_BINDING",
|
22322
22336
|
"COUNTER_STYLE_RULE",
|
@@ -23050,6 +23064,7 @@ var domprops = [
|
|
23050
23064
|
"FOCUS",
|
23051
23065
|
"FONT_FACE_RULE",
|
23052
23066
|
"FONT_FEATURE_VALUES_RULE",
|
23067
|
+
"FRAGMENT",
|
23053
23068
|
"FRAGMENT_SHADER",
|
23054
23069
|
"FRAGMENT_SHADER_DERIVATIVE_HINT",
|
23055
23070
|
"FRAGMENT_SHADER_DERIVATIVE_HINT_OES",
|
@@ -23110,6 +23125,7 @@ var domprops = [
|
|
23110
23125
|
"GENERATE_MIPMAP_HINT",
|
23111
23126
|
"GEQUAL",
|
23112
23127
|
"GREATER",
|
23128
|
+
"GREEN",
|
23113
23129
|
"GREEN_BITS",
|
23114
23130
|
"GainNode",
|
23115
23131
|
"Gamepad",
|
@@ -23261,7 +23277,9 @@ var domprops = [
|
|
23261
23277
|
"IMPORT_RULE",
|
23262
23278
|
"INCR",
|
23263
23279
|
"INCR_WRAP",
|
23280
|
+
"INDEX",
|
23264
23281
|
"INDEX_SIZE_ERR",
|
23282
|
+
"INDIRECT",
|
23265
23283
|
"INT",
|
23266
23284
|
"INTERLEAVED_ATTRIBS",
|
23267
23285
|
"INT_2_10_10_10_REV",
|
@@ -23363,6 +23381,8 @@ var domprops = [
|
|
23363
23381
|
"Location",
|
23364
23382
|
"Lock",
|
23365
23383
|
"LockManager",
|
23384
|
+
"MAP_READ",
|
23385
|
+
"MAP_WRITE",
|
23366
23386
|
"MAX",
|
23367
23387
|
"MAX_3D_TEXTURE_SIZE",
|
23368
23388
|
"MAX_ARRAY_TEXTURE_LAYERS",
|
@@ -23806,6 +23826,7 @@ var domprops = [
|
|
23806
23826
|
"PushSubscription",
|
23807
23827
|
"PushSubscriptionOptions",
|
23808
23828
|
"Q",
|
23829
|
+
"QUERY_RESOLVE",
|
23809
23830
|
"QUERY_RESULT",
|
23810
23831
|
"QUERY_RESULT_AVAILABLE",
|
23811
23832
|
"QUOTA_ERR",
|
@@ -23823,6 +23844,7 @@ var domprops = [
|
|
23823
23844
|
"R8UI",
|
23824
23845
|
"R8_SNORM",
|
23825
23846
|
"RASTERIZER_DISCARD",
|
23847
|
+
"READ",
|
23826
23848
|
"READ_BUFFER",
|
23827
23849
|
"READ_FRAMEBUFFER",
|
23828
23850
|
"READ_FRAMEBUFFER_BINDING",
|
@@ -23852,6 +23874,7 @@ var domprops = [
|
|
23852
23874
|
"RENDERING_INTENT_RELATIVE_COLORIMETRIC",
|
23853
23875
|
"RENDERING_INTENT_SATURATION",
|
23854
23876
|
"RENDERING_INTENT_UNKNOWN",
|
23877
|
+
"RENDER_ATTACHMENT",
|
23855
23878
|
"REPEAT",
|
23856
23879
|
"REPLACE",
|
23857
23880
|
"RG",
|
@@ -24032,6 +24055,8 @@ var domprops = [
|
|
24032
24055
|
"STENCIL_TEST",
|
24033
24056
|
"STENCIL_VALUE_MASK",
|
24034
24057
|
"STENCIL_WRITEMASK",
|
24058
|
+
"STORAGE",
|
24059
|
+
"STORAGE_BINDING",
|
24035
24060
|
"STREAM_COPY",
|
24036
24061
|
"STREAM_DRAW",
|
24037
24062
|
"STREAM_READ",
|
@@ -24404,6 +24429,7 @@ var domprops = [
|
|
24404
24429
|
"TEXTURE_2D_ARRAY",
|
24405
24430
|
"TEXTURE_3D",
|
24406
24431
|
"TEXTURE_BASE_LEVEL",
|
24432
|
+
"TEXTURE_BINDING",
|
24407
24433
|
"TEXTURE_BINDING_2D",
|
24408
24434
|
"TEXTURE_BINDING_2D_ARRAY",
|
24409
24435
|
"TEXTURE_BINDING_3D",
|
@@ -24488,6 +24514,7 @@ var domprops = [
|
|
24488
24514
|
"U2F",
|
24489
24515
|
"UIEvent",
|
24490
24516
|
"UNCACHED",
|
24517
|
+
"UNIFORM",
|
24491
24518
|
"UNIFORM_ARRAY_STRIDE",
|
24492
24519
|
"UNIFORM_BLOCK_ACTIVE_UNIFORMS",
|
24493
24520
|
"UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES",
|
@@ -24578,6 +24605,7 @@ var domprops = [
|
|
24578
24605
|
"VERSION",
|
24579
24606
|
"VERSION_CHANGE",
|
24580
24607
|
"VERSION_ERR",
|
24608
|
+
"VERTEX",
|
24581
24609
|
"VERTEX_ARRAY_BINDING",
|
24582
24610
|
"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING",
|
24583
24611
|
"VERTEX_ATTRIB_ARRAY_DIVISOR",
|
@@ -24614,6 +24642,7 @@ var domprops = [
|
|
24614
24642
|
"WEBKIT_KEYFRAMES_RULE",
|
24615
24643
|
"WEBKIT_KEYFRAME_RULE",
|
24616
24644
|
"WEBKIT_REGION_RULE",
|
24645
|
+
"WRITE",
|
24617
24646
|
"WRONG_DOCUMENT_ERR",
|
24618
24647
|
"WakeLock",
|
24619
24648
|
"WakeLockSentinel",
|
@@ -24783,6 +24812,7 @@ var domprops = [
|
|
24783
24812
|
"ZERO",
|
24784
24813
|
"_XD0M_",
|
24785
24814
|
"_YD0M_",
|
24815
|
+
"__brand",
|
24786
24816
|
"__defineGetter__",
|
24787
24817
|
"__defineSetter__",
|
24788
24818
|
"__lookupGetter__",
|
@@ -24803,6 +24833,7 @@ var domprops = [
|
|
24803
24833
|
"accept",
|
24804
24834
|
"acceptCharset",
|
24805
24835
|
"acceptNode",
|
24836
|
+
"access",
|
24806
24837
|
"accessKey",
|
24807
24838
|
"accessKeyLabel",
|
24808
24839
|
"accuracy",
|
@@ -24859,6 +24890,9 @@ var domprops = [
|
|
24859
24890
|
"addons",
|
24860
24891
|
"address",
|
24861
24892
|
"addressLine",
|
24893
|
+
"addressModeU",
|
24894
|
+
"addressModeV",
|
24895
|
+
"addressModeW",
|
24862
24896
|
"adoptNode",
|
24863
24897
|
"adoptedStyleSheets",
|
24864
24898
|
"adr",
|
@@ -24886,6 +24920,8 @@ var domprops = [
|
|
24886
24920
|
"allowedToPlay",
|
24887
24921
|
"allowsFeature",
|
24888
24922
|
"alpha",
|
24923
|
+
"alphaMode",
|
24924
|
+
"alphaToCoverageEnabled",
|
24889
24925
|
"alt",
|
24890
24926
|
"altGraphKey",
|
24891
24927
|
"altHtml",
|
@@ -25004,6 +25040,8 @@ var domprops = [
|
|
25004
25040
|
"ariaValueNow",
|
25005
25041
|
"ariaValueText",
|
25006
25042
|
"arrayBuffer",
|
25043
|
+
"arrayLayerCount",
|
25044
|
+
"arrayStride",
|
25007
25045
|
"artist",
|
25008
25046
|
"artwork",
|
25009
25047
|
"as",
|
@@ -25011,6 +25049,7 @@ var domprops = [
|
|
25011
25049
|
"asUintN",
|
25012
25050
|
"asin",
|
25013
25051
|
"asinh",
|
25052
|
+
"aspect",
|
25014
25053
|
"assert",
|
25015
25054
|
"assign",
|
25016
25055
|
"assignedElements",
|
@@ -25095,10 +25134,12 @@ var domprops = [
|
|
25095
25134
|
"badInput",
|
25096
25135
|
"badge",
|
25097
25136
|
"balance",
|
25137
|
+
"baseArrayLayer",
|
25098
25138
|
"baseFrequencyX",
|
25099
25139
|
"baseFrequencyY",
|
25100
25140
|
"baseLatency",
|
25101
25141
|
"baseLayer",
|
25142
|
+
"baseMipLevel",
|
25102
25143
|
"baseNode",
|
25103
25144
|
"baseOffset",
|
25104
25145
|
"baseURI",
|
@@ -25107,11 +25148,15 @@ var domprops = [
|
|
25107
25148
|
"battery",
|
25108
25149
|
"bday",
|
25109
25150
|
"before",
|
25151
|
+
"beginComputePass",
|
25110
25152
|
"beginElement",
|
25111
25153
|
"beginElementAt",
|
25154
|
+
"beginOcclusionQuery",
|
25112
25155
|
"beginPath",
|
25113
25156
|
"beginQuery",
|
25157
|
+
"beginRenderPass",
|
25114
25158
|
"beginTransformFeedback",
|
25159
|
+
"beginningOfPassWriteIndex",
|
25115
25160
|
"behavior",
|
25116
25161
|
"behaviorCookie",
|
25117
25162
|
"behaviorPart",
|
@@ -25131,12 +25176,15 @@ var domprops = [
|
|
25131
25176
|
"bindBufferBase",
|
25132
25177
|
"bindBufferRange",
|
25133
25178
|
"bindFramebuffer",
|
25179
|
+
"bindGroupLayouts",
|
25134
25180
|
"bindRenderbuffer",
|
25135
25181
|
"bindSampler",
|
25136
25182
|
"bindTexture",
|
25137
25183
|
"bindTransformFeedback",
|
25138
25184
|
"bindVertexArray",
|
25185
|
+
"binding",
|
25139
25186
|
"bitness",
|
25187
|
+
"blend",
|
25140
25188
|
"blendColor",
|
25141
25189
|
"blendEquation",
|
25142
25190
|
"blendEquationSeparate",
|
@@ -25318,6 +25366,7 @@ var domprops = [
|
|
25318
25366
|
"buffered",
|
25319
25367
|
"bufferedAmount",
|
25320
25368
|
"bufferedAmountLowThreshold",
|
25369
|
+
"buffers",
|
25321
25370
|
"buildID",
|
25322
25371
|
"buildNumber",
|
25323
25372
|
"button",
|
@@ -25325,6 +25374,7 @@ var domprops = [
|
|
25325
25374
|
"buttons",
|
25326
25375
|
"byteLength",
|
25327
25376
|
"byteOffset",
|
25377
|
+
"bytesPerRow",
|
25328
25378
|
"bytesWritten",
|
25329
25379
|
"c",
|
25330
25380
|
"cache",
|
@@ -25421,6 +25471,7 @@ var domprops = [
|
|
25421
25471
|
"clear",
|
25422
25472
|
"clearAppBadge",
|
25423
25473
|
"clearAttributes",
|
25474
|
+
"clearBuffer",
|
25424
25475
|
"clearBufferfi",
|
25425
25476
|
"clearBufferfv",
|
25426
25477
|
"clearBufferiv",
|
@@ -25441,6 +25492,7 @@ var domprops = [
|
|
25441
25492
|
"clearShadow",
|
25442
25493
|
"clearStencil",
|
25443
25494
|
"clearTimeout",
|
25495
|
+
"clearValue",
|
25444
25496
|
"clearWatch",
|
25445
25497
|
"click",
|
25446
25498
|
"clickCount",
|
@@ -25495,10 +25547,13 @@ var domprops = [
|
|
25495
25547
|
"color-interpolation",
|
25496
25548
|
"color-interpolation-filters",
|
25497
25549
|
"colorAdjust",
|
25550
|
+
"colorAttachments",
|
25498
25551
|
"colorDepth",
|
25552
|
+
"colorFormats",
|
25499
25553
|
"colorInterpolation",
|
25500
25554
|
"colorInterpolationFilters",
|
25501
25555
|
"colorMask",
|
25556
|
+
"colorSpace",
|
25502
25557
|
"colorType",
|
25503
25558
|
"cols",
|
25504
25559
|
"column-count",
|
@@ -25527,6 +25582,7 @@ var domprops = [
|
|
25527
25582
|
"commitStyles",
|
25528
25583
|
"commonAncestorContainer",
|
25529
25584
|
"compact",
|
25585
|
+
"compare",
|
25530
25586
|
"compareBoundaryPoints",
|
25531
25587
|
"compareDocumentPosition",
|
25532
25588
|
"compareEndPoints",
|
@@ -25550,6 +25606,7 @@ var domprops = [
|
|
25550
25606
|
"compressedTexImage3D",
|
25551
25607
|
"compressedTexSubImage2D",
|
25552
25608
|
"compressedTexSubImage3D",
|
25609
|
+
"compute",
|
25553
25610
|
"computedStyleMap",
|
25554
25611
|
"concat",
|
25555
25612
|
"conditionText",
|
@@ -25561,6 +25618,7 @@ var domprops = [
|
|
25561
25618
|
"configurationName",
|
25562
25619
|
"configurationValue",
|
25563
25620
|
"configurations",
|
25621
|
+
"configure",
|
25564
25622
|
"confirm",
|
25565
25623
|
"confirmComposition",
|
25566
25624
|
"confirmSiteSpecificTrackingException",
|
@@ -25577,6 +25635,7 @@ var domprops = [
|
|
25577
25635
|
"connections",
|
25578
25636
|
"console",
|
25579
25637
|
"consolidate",
|
25638
|
+
"constants",
|
25580
25639
|
"constraint",
|
25581
25640
|
"constrictionActive",
|
25582
25641
|
"construct",
|
@@ -25621,10 +25680,15 @@ var domprops = [
|
|
25621
25680
|
"cookieEnabled",
|
25622
25681
|
"coords",
|
25623
25682
|
"copyBufferSubData",
|
25683
|
+
"copyBufferToBuffer",
|
25684
|
+
"copyBufferToTexture",
|
25685
|
+
"copyExternalImageToTexture",
|
25624
25686
|
"copyFromChannel",
|
25625
25687
|
"copyTexImage2D",
|
25626
25688
|
"copyTexSubImage2D",
|
25627
25689
|
"copyTexSubImage3D",
|
25690
|
+
"copyTextureToBuffer",
|
25691
|
+
"copyTextureToTexture",
|
25628
25692
|
"copyToChannel",
|
25629
25693
|
"copyWithin",
|
25630
25694
|
"correspondingElement",
|
@@ -25648,6 +25712,8 @@ var domprops = [
|
|
25648
25712
|
"createAnswer",
|
25649
25713
|
"createAttribute",
|
25650
25714
|
"createAttributeNS",
|
25715
|
+
"createBindGroup",
|
25716
|
+
"createBindGroupLayout",
|
25651
25717
|
"createBiquadFilter",
|
25652
25718
|
"createBuffer",
|
25653
25719
|
"createBufferSource",
|
@@ -25656,7 +25722,10 @@ var domprops = [
|
|
25656
25722
|
"createCaption",
|
25657
25723
|
"createChannelMerger",
|
25658
25724
|
"createChannelSplitter",
|
25725
|
+
"createCommandEncoder",
|
25659
25726
|
"createComment",
|
25727
|
+
"createComputePipeline",
|
25728
|
+
"createComputePipelineAsync",
|
25660
25729
|
"createConstantSource",
|
25661
25730
|
"createContextualFragment",
|
25662
25731
|
"createControlRange",
|
@@ -25703,15 +25772,20 @@ var domprops = [
|
|
25703
25772
|
"createPanner",
|
25704
25773
|
"createPattern",
|
25705
25774
|
"createPeriodicWave",
|
25775
|
+
"createPipelineLayout",
|
25706
25776
|
"createPolicy",
|
25707
25777
|
"createPopup",
|
25708
25778
|
"createProcessingInstruction",
|
25709
25779
|
"createProgram",
|
25710
25780
|
"createQuery",
|
25781
|
+
"createQuerySet",
|
25711
25782
|
"createRadialGradient",
|
25712
25783
|
"createRange",
|
25713
25784
|
"createRangeCollection",
|
25714
25785
|
"createReader",
|
25786
|
+
"createRenderBundleEncoder",
|
25787
|
+
"createRenderPipeline",
|
25788
|
+
"createRenderPipelineAsync",
|
25715
25789
|
"createRenderbuffer",
|
25716
25790
|
"createSVGAngle",
|
25717
25791
|
"createSVGLength",
|
@@ -25746,6 +25820,7 @@ var domprops = [
|
|
25746
25820
|
"createScriptURL",
|
25747
25821
|
"createSession",
|
25748
25822
|
"createShader",
|
25823
|
+
"createShaderModule",
|
25749
25824
|
"createShadowRoot",
|
25750
25825
|
"createStereoPanner",
|
25751
25826
|
"createStyleSheet",
|
@@ -25760,6 +25835,7 @@ var domprops = [
|
|
25760
25835
|
"createTransformFeedback",
|
25761
25836
|
"createTreeWalker",
|
25762
25837
|
"createVertexArray",
|
25838
|
+
"createView",
|
25763
25839
|
"createWaveShaper",
|
25764
25840
|
"creationTime",
|
25765
25841
|
"credentials",
|
@@ -25776,6 +25852,7 @@ var domprops = [
|
|
25776
25852
|
"ctrlLeft",
|
25777
25853
|
"cues",
|
25778
25854
|
"cullFace",
|
25855
|
+
"cullMode",
|
25779
25856
|
"currentDirection",
|
25780
25857
|
"currentLocalDescription",
|
25781
25858
|
"currentNode",
|
@@ -25829,6 +25906,7 @@ var domprops = [
|
|
25829
25906
|
"defaultPlaybackRate",
|
25830
25907
|
"defaultPolicy",
|
25831
25908
|
"defaultPrevented",
|
25909
|
+
"defaultQueue",
|
25832
25910
|
"defaultRequest",
|
25833
25911
|
"defaultSelected",
|
25834
25912
|
"defaultStatus",
|
@@ -25883,11 +25961,25 @@ var domprops = [
|
|
25883
25961
|
"deltaY",
|
25884
25962
|
"deltaZ",
|
25885
25963
|
"dependentLocality",
|
25964
|
+
"depthBias",
|
25965
|
+
"depthBiasClamp",
|
25966
|
+
"depthBiasSlopeScale",
|
25967
|
+
"depthClearValue",
|
25968
|
+
"depthCompare",
|
25969
|
+
"depthFailOp",
|
25886
25970
|
"depthFar",
|
25887
25971
|
"depthFunc",
|
25972
|
+
"depthLoadOp",
|
25888
25973
|
"depthMask",
|
25889
25974
|
"depthNear",
|
25975
|
+
"depthOrArrayLayers",
|
25890
25976
|
"depthRange",
|
25977
|
+
"depthReadOnly",
|
25978
|
+
"depthStencil",
|
25979
|
+
"depthStencilAttachment",
|
25980
|
+
"depthStencilFormat",
|
25981
|
+
"depthStoreOp",
|
25982
|
+
"depthWriteEnabled",
|
25891
25983
|
"deref",
|
25892
25984
|
"deriveBits",
|
25893
25985
|
"deriveKey",
|
@@ -25897,6 +25989,7 @@ var domprops = [
|
|
25897
25989
|
"desiredSize",
|
25898
25990
|
"destination",
|
25899
25991
|
"destinationURL",
|
25992
|
+
"destroy",
|
25900
25993
|
"detach",
|
25901
25994
|
"detachEvent",
|
25902
25995
|
"detachShader",
|
@@ -25920,6 +26013,7 @@ var domprops = [
|
|
25920
26013
|
"didTimeout",
|
25921
26014
|
"diffuseConstant",
|
25922
26015
|
"digest",
|
26016
|
+
"dimension",
|
25923
26017
|
"dimensions",
|
25924
26018
|
"dir",
|
25925
26019
|
"dirName",
|
@@ -25934,6 +26028,8 @@ var domprops = [
|
|
25934
26028
|
"disconnect",
|
25935
26029
|
"disconnectShark",
|
25936
26030
|
"dispatchEvent",
|
26031
|
+
"dispatchWorkgroups",
|
26032
|
+
"dispatchWorkgroupsIndirect",
|
25937
26033
|
"display",
|
25938
26034
|
"displayId",
|
25939
26035
|
"displayName",
|
@@ -25979,6 +26075,7 @@ var domprops = [
|
|
25979
26075
|
"dppx",
|
25980
26076
|
"dragDrop",
|
25981
26077
|
"draggable",
|
26078
|
+
"draw",
|
25982
26079
|
"drawArrays",
|
25983
26080
|
"drawArraysInstanced",
|
25984
26081
|
"drawArraysInstancedANGLE",
|
@@ -25990,6 +26087,9 @@ var domprops = [
|
|
25990
26087
|
"drawFocusIfNeeded",
|
25991
26088
|
"drawImage",
|
25992
26089
|
"drawImageFromRect",
|
26090
|
+
"drawIndexed",
|
26091
|
+
"drawIndexedIndirect",
|
26092
|
+
"drawIndirect",
|
25993
26093
|
"drawRangeElements",
|
25994
26094
|
"drawSystemFocusRing",
|
25995
26095
|
"drawingBufferHeight",
|
@@ -25997,6 +26097,7 @@ var domprops = [
|
|
25997
26097
|
"dropEffect",
|
25998
26098
|
"droppedVideoFrames",
|
25999
26099
|
"dropzone",
|
26100
|
+
"dstFactor",
|
26000
26101
|
"dtmf",
|
26001
26102
|
"dump",
|
26002
26103
|
"dumpProfile",
|
@@ -26052,6 +26153,8 @@ var domprops = [
|
|
26052
26153
|
"endContainer",
|
26053
26154
|
"endElement",
|
26054
26155
|
"endElementAt",
|
26156
|
+
"endOcclusionQuery",
|
26157
|
+
"endOfPassWriteIndex",
|
26055
26158
|
"endOfStream",
|
26056
26159
|
"endOffset",
|
26057
26160
|
"endQuery",
|
@@ -26065,6 +26168,7 @@ var domprops = [
|
|
26065
26168
|
"enterKeyHint",
|
26066
26169
|
"entities",
|
26067
26170
|
"entries",
|
26171
|
+
"entryPoint",
|
26068
26172
|
"entryType",
|
26069
26173
|
"enumerable",
|
26070
26174
|
"enumerate",
|
@@ -26090,6 +26194,7 @@ var domprops = [
|
|
26090
26194
|
"execCommand",
|
26091
26195
|
"execCommandShowHelp",
|
26092
26196
|
"execScript",
|
26197
|
+
"executeBundles",
|
26093
26198
|
"exitFullscreen",
|
26094
26199
|
"exitPictureInPicture",
|
26095
26200
|
"exitPointerLock",
|
@@ -26115,12 +26220,14 @@ var domprops = [
|
|
26115
26220
|
"extentOffset",
|
26116
26221
|
"external",
|
26117
26222
|
"externalResourcesRequired",
|
26223
|
+
"externalTexture",
|
26118
26224
|
"extractContents",
|
26119
26225
|
"extractable",
|
26120
26226
|
"eye",
|
26121
26227
|
"f",
|
26122
26228
|
"face",
|
26123
26229
|
"factoryReset",
|
26230
|
+
"failOp",
|
26124
26231
|
"failureReason",
|
26125
26232
|
"fallback",
|
26126
26233
|
"family",
|
@@ -26252,6 +26359,7 @@ var domprops = [
|
|
26252
26359
|
"for",
|
26253
26360
|
"forEach",
|
26254
26361
|
"force",
|
26362
|
+
"forceFallbackAdapter",
|
26255
26363
|
"forceRedraw",
|
26256
26364
|
"form",
|
26257
26365
|
"formAction",
|
@@ -26269,6 +26377,7 @@ var domprops = [
|
|
26269
26377
|
"forwardZ",
|
26270
26378
|
"foundation",
|
26271
26379
|
"fr",
|
26380
|
+
"fragment",
|
26272
26381
|
"fragmentDirective",
|
26273
26382
|
"frame",
|
26274
26383
|
"frameBorder",
|
@@ -26306,6 +26415,7 @@ var domprops = [
|
|
26306
26415
|
"fullscreenEnabled",
|
26307
26416
|
"fx",
|
26308
26417
|
"fy",
|
26418
|
+
"g",
|
26309
26419
|
"gain",
|
26310
26420
|
"gamepad",
|
26311
26421
|
"gamma",
|
@@ -26347,6 +26457,7 @@ var domprops = [
|
|
26347
26457
|
"getBattery",
|
26348
26458
|
"getBigInt64",
|
26349
26459
|
"getBigUint64",
|
26460
|
+
"getBindGroupLayout",
|
26350
26461
|
"getBlob",
|
26351
26462
|
"getBookmark",
|
26352
26463
|
"getBoundingClientRect",
|
@@ -26369,6 +26480,7 @@ var domprops = [
|
|
26369
26480
|
"getClientRect",
|
26370
26481
|
"getClientRects",
|
26371
26482
|
"getCoalescedEvents",
|
26483
|
+
"getCompilationInfo",
|
26372
26484
|
"getCompositionAlternatives",
|
26373
26485
|
"getComputedStyle",
|
26374
26486
|
"getComputedTextLength",
|
@@ -26382,6 +26494,7 @@ var domprops = [
|
|
26382
26494
|
"getCueAsHTML",
|
26383
26495
|
"getCueById",
|
26384
26496
|
"getCurrentPosition",
|
26497
|
+
"getCurrentTexture",
|
26385
26498
|
"getCurrentTime",
|
26386
26499
|
"getData",
|
26387
26500
|
"getDatabaseNames",
|
@@ -26450,6 +26563,7 @@ var domprops = [
|
|
26450
26563
|
"getLocalCandidates",
|
26451
26564
|
"getLocalParameters",
|
26452
26565
|
"getLocalStreams",
|
26566
|
+
"getMappedRange",
|
26453
26567
|
"getMarks",
|
26454
26568
|
"getMatchedCSSRules",
|
26455
26569
|
"getMaxGCPauseSinceClear",
|
@@ -26484,6 +26598,7 @@ var domprops = [
|
|
26484
26598
|
"getPredictedEvents",
|
26485
26599
|
"getPreference",
|
26486
26600
|
"getPreferenceDefault",
|
26601
|
+
"getPreferredCanvasFormat",
|
26487
26602
|
"getPresentationAttribute",
|
26488
26603
|
"getPreventDefault",
|
26489
26604
|
"getPrimaryService",
|
@@ -26602,6 +26717,7 @@ var domprops = [
|
|
26602
26717
|
"glyphOrientationVertical",
|
26603
26718
|
"glyphRef",
|
26604
26719
|
"go",
|
26720
|
+
"gpu",
|
26605
26721
|
"grabFrame",
|
26606
26722
|
"grad",
|
26607
26723
|
"gradientTransform",
|
@@ -26660,6 +26776,7 @@ var domprops = [
|
|
26660
26776
|
"hasBeenActive",
|
26661
26777
|
"hasChildNodes",
|
26662
26778
|
"hasComposition",
|
26779
|
+
"hasDynamicOffset",
|
26663
26780
|
"hasEnrolledInstrument",
|
26664
26781
|
"hasExtension",
|
26665
26782
|
"hasExternalDisplay",
|
@@ -26684,6 +26801,7 @@ var domprops = [
|
|
26684
26801
|
"high",
|
26685
26802
|
"highWaterMark",
|
26686
26803
|
"hint",
|
26804
|
+
"hints",
|
26687
26805
|
"history",
|
26688
26806
|
"honorificPrefix",
|
26689
26807
|
"honorificSuffix",
|
@@ -26730,6 +26848,7 @@ var domprops = [
|
|
26730
26848
|
"ime-mode",
|
26731
26849
|
"imeMode",
|
26732
26850
|
"implementation",
|
26851
|
+
"importExternalTexture",
|
26733
26852
|
"importKey",
|
26734
26853
|
"importNode",
|
26735
26854
|
"importStylesheet",
|
@@ -26825,6 +26944,7 @@ var domprops = [
|
|
26825
26944
|
"insertCell",
|
26826
26945
|
"insertDTMF",
|
26827
26946
|
"insertData",
|
26947
|
+
"insertDebugMarker",
|
26828
26948
|
"insertItemBefore",
|
26829
26949
|
"insertNode",
|
26830
26950
|
"insertRow",
|
@@ -26895,6 +27015,7 @@ var domprops = [
|
|
26895
27015
|
"isEqualNode",
|
26896
27016
|
"isExtensible",
|
26897
27017
|
"isExternalCTAP2SecurityKeySupported",
|
27018
|
+
"isFallbackAdapter",
|
26898
27019
|
"isFile",
|
26899
27020
|
"isFinite",
|
26900
27021
|
"isFramebuffer",
|
@@ -27020,6 +27141,7 @@ var domprops = [
|
|
27020
27141
|
"latitude",
|
27021
27142
|
"layerX",
|
27022
27143
|
"layerY",
|
27144
|
+
"layout",
|
27023
27145
|
"layoutFlow",
|
27024
27146
|
"layoutGrid",
|
27025
27147
|
"layoutGridChar",
|
@@ -27042,6 +27164,7 @@ var domprops = [
|
|
27042
27164
|
"lighting-color",
|
27043
27165
|
"lightingColor",
|
27044
27166
|
"limitingConeAngle",
|
27167
|
+
"limits",
|
27045
27168
|
"line",
|
27046
27169
|
"line-break",
|
27047
27170
|
"line-height",
|
@@ -27051,7 +27174,9 @@ var domprops = [
|
|
27051
27174
|
"lineDashOffset",
|
27052
27175
|
"lineHeight",
|
27053
27176
|
"lineJoin",
|
27177
|
+
"lineNum",
|
27054
27178
|
"lineNumber",
|
27179
|
+
"linePos",
|
27055
27180
|
"lineTo",
|
27056
27181
|
"lineWidth",
|
27057
27182
|
"linearAcceleration",
|
@@ -27076,6 +27201,7 @@ var domprops = [
|
|
27076
27201
|
"load",
|
27077
27202
|
"loadEventEnd",
|
27078
27203
|
"loadEventStart",
|
27204
|
+
"loadOp",
|
27079
27205
|
"loadTime",
|
27080
27206
|
"loadTimes",
|
27081
27207
|
"loaded",
|
@@ -27092,6 +27218,8 @@ var domprops = [
|
|
27092
27218
|
"locked",
|
27093
27219
|
"lockedFile",
|
27094
27220
|
"locks",
|
27221
|
+
"lodMaxClamp",
|
27222
|
+
"lodMinClamp",
|
27095
27223
|
"log",
|
27096
27224
|
"log10",
|
27097
27225
|
"log1p",
|
@@ -27106,6 +27234,7 @@ var domprops = [
|
|
27106
27234
|
"loopEnd",
|
27107
27235
|
"loopStart",
|
27108
27236
|
"looping",
|
27237
|
+
"lost",
|
27109
27238
|
"low",
|
27110
27239
|
"lower",
|
27111
27240
|
"lowerBound",
|
@@ -27127,11 +27256,15 @@ var domprops = [
|
|
27127
27256
|
"m42",
|
27128
27257
|
"m43",
|
27129
27258
|
"m44",
|
27259
|
+
"magFilter",
|
27130
27260
|
"makeXRCompatible",
|
27131
27261
|
"manifest",
|
27132
27262
|
"manufacturer",
|
27133
27263
|
"manufacturerName",
|
27134
27264
|
"map",
|
27265
|
+
"mapAsync",
|
27266
|
+
"mapState",
|
27267
|
+
"mappedAtCreation",
|
27135
27268
|
"mapping",
|
27136
27269
|
"margin",
|
27137
27270
|
"margin-block",
|
@@ -27209,21 +27342,53 @@ var domprops = [
|
|
27209
27342
|
"max-width",
|
27210
27343
|
"maxActions",
|
27211
27344
|
"maxAlternatives",
|
27345
|
+
"maxAnisotropy",
|
27346
|
+
"maxBindGroups",
|
27347
|
+
"maxBindGroupsPlusVertexBuffers",
|
27348
|
+
"maxBindingsPerBindGroup",
|
27212
27349
|
"maxBlockSize",
|
27350
|
+
"maxBufferSize",
|
27213
27351
|
"maxChannelCount",
|
27214
27352
|
"maxChannels",
|
27353
|
+
"maxColorAttachmentBytesPerSample",
|
27354
|
+
"maxColorAttachments",
|
27355
|
+
"maxComputeInvocationsPerWorkgroup",
|
27356
|
+
"maxComputeWorkgroupSizeX",
|
27357
|
+
"maxComputeWorkgroupSizeY",
|
27358
|
+
"maxComputeWorkgroupSizeZ",
|
27359
|
+
"maxComputeWorkgroupStorageSize",
|
27360
|
+
"maxComputeWorkgroupsPerDimension",
|
27215
27361
|
"maxConnectionsPerServer",
|
27216
27362
|
"maxDecibels",
|
27217
27363
|
"maxDistance",
|
27364
|
+
"maxDrawCount",
|
27365
|
+
"maxDynamicStorageBuffersPerPipelineLayout",
|
27366
|
+
"maxDynamicUniformBuffersPerPipelineLayout",
|
27218
27367
|
"maxHeight",
|
27219
27368
|
"maxInlineSize",
|
27369
|
+
"maxInterStageShaderComponents",
|
27370
|
+
"maxInterStageShaderVariables",
|
27220
27371
|
"maxLayers",
|
27221
27372
|
"maxLength",
|
27222
27373
|
"maxMessageSize",
|
27223
27374
|
"maxPacketLifeTime",
|
27224
27375
|
"maxRetransmits",
|
27376
|
+
"maxSampledTexturesPerShaderStage",
|
27377
|
+
"maxSamplersPerShaderStage",
|
27378
|
+
"maxStorageBufferBindingSize",
|
27379
|
+
"maxStorageBuffersPerShaderStage",
|
27380
|
+
"maxStorageTexturesPerShaderStage",
|
27381
|
+
"maxTextureArrayLayers",
|
27382
|
+
"maxTextureDimension1D",
|
27383
|
+
"maxTextureDimension2D",
|
27384
|
+
"maxTextureDimension3D",
|
27225
27385
|
"maxTouchPoints",
|
27386
|
+
"maxUniformBufferBindingSize",
|
27387
|
+
"maxUniformBuffersPerShaderStage",
|
27226
27388
|
"maxValue",
|
27389
|
+
"maxVertexAttributes",
|
27390
|
+
"maxVertexBufferArrayStride",
|
27391
|
+
"maxVertexBuffers",
|
27227
27392
|
"maxWidth",
|
27228
27393
|
"measure",
|
27229
27394
|
"measureText",
|
@@ -27244,6 +27409,7 @@ var domprops = [
|
|
27244
27409
|
"messageClass",
|
27245
27410
|
"messageHandlers",
|
27246
27411
|
"messageType",
|
27412
|
+
"messages",
|
27247
27413
|
"metaKey",
|
27248
27414
|
"metadata",
|
27249
27415
|
"method",
|
@@ -27257,13 +27423,20 @@ var domprops = [
|
|
27257
27423
|
"min-height",
|
27258
27424
|
"min-inline-size",
|
27259
27425
|
"min-width",
|
27426
|
+
"minBindingSize",
|
27260
27427
|
"minBlockSize",
|
27261
27428
|
"minDecibels",
|
27429
|
+
"minFilter",
|
27262
27430
|
"minHeight",
|
27263
27431
|
"minInlineSize",
|
27264
27432
|
"minLength",
|
27433
|
+
"minStorageBufferOffsetAlignment",
|
27434
|
+
"minUniformBufferOffsetAlignment",
|
27265
27435
|
"minValue",
|
27266
27436
|
"minWidth",
|
27437
|
+
"mipLevel",
|
27438
|
+
"mipLevelCount",
|
27439
|
+
"mipmapFilter",
|
27267
27440
|
"miterLimit",
|
27268
27441
|
"mix-blend-mode",
|
27269
27442
|
"mixBlendMode",
|
@@ -27272,6 +27445,7 @@ var domprops = [
|
|
27272
27445
|
"mode",
|
27273
27446
|
"model",
|
27274
27447
|
"modify",
|
27448
|
+
"module",
|
27275
27449
|
"mount",
|
27276
27450
|
"move",
|
27277
27451
|
"moveBy",
|
@@ -27522,6 +27696,8 @@ var domprops = [
|
|
27522
27696
|
"multiple",
|
27523
27697
|
"multiply",
|
27524
27698
|
"multiplySelf",
|
27699
|
+
"multisample",
|
27700
|
+
"multisampled",
|
27525
27701
|
"mutableFile",
|
27526
27702
|
"muted",
|
27527
27703
|
"n",
|
@@ -27598,6 +27774,7 @@ var domprops = [
|
|
27598
27774
|
"objectStoreNames",
|
27599
27775
|
"objectType",
|
27600
27776
|
"observe",
|
27777
|
+
"occlusionQuerySet",
|
27601
27778
|
"of",
|
27602
27779
|
"offscreenBuffering",
|
27603
27780
|
"offset",
|
@@ -27623,6 +27800,7 @@ var domprops = [
|
|
27623
27800
|
"oldVersion",
|
27624
27801
|
"olderShadowRoot",
|
27625
27802
|
"onLine",
|
27803
|
+
"onSubmittedWorkDone",
|
27626
27804
|
"onabort",
|
27627
27805
|
"onabsolutedeviceorientation",
|
27628
27806
|
"onactivate",
|
@@ -27919,6 +28097,7 @@ var domprops = [
|
|
27919
28097
|
"ontransitionend",
|
27920
28098
|
"ontransitionrun",
|
27921
28099
|
"ontransitionstart",
|
28100
|
+
"onuncapturederror",
|
27922
28101
|
"onunhandledrejection",
|
27923
28102
|
"onunload",
|
27924
28103
|
"onunmute",
|
@@ -27967,6 +28146,7 @@ var domprops = [
|
|
27967
28146
|
"opened",
|
27968
28147
|
"opener",
|
27969
28148
|
"opera",
|
28149
|
+
"operation",
|
27970
28150
|
"operationType",
|
27971
28151
|
"operator",
|
27972
28152
|
"opr",
|
@@ -28109,6 +28289,7 @@ var domprops = [
|
|
28109
28289
|
"parseInt",
|
28110
28290
|
"part",
|
28111
28291
|
"participants",
|
28292
|
+
"passOp",
|
28112
28293
|
"passive",
|
28113
28294
|
"password",
|
28114
28295
|
"pasteHTML",
|
@@ -28178,8 +28359,8 @@ var domprops = [
|
|
28178
28359
|
"placeItems",
|
28179
28360
|
"placeSelf",
|
28180
28361
|
"placeholder",
|
28181
|
-
"platformVersion",
|
28182
28362
|
"platform",
|
28363
|
+
"platformVersion",
|
28183
28364
|
"platforms",
|
28184
28365
|
"play",
|
28185
28366
|
"playEffect",
|
@@ -28206,6 +28387,8 @@ var domprops = [
|
|
28206
28387
|
"pointsAtZ",
|
28207
28388
|
"polygonOffset",
|
28208
28389
|
"pop",
|
28390
|
+
"popDebugGroup",
|
28391
|
+
"popErrorScope",
|
28209
28392
|
"populateMatrix",
|
28210
28393
|
"popupWindowFeatures",
|
28211
28394
|
"popupWindowName",
|
@@ -28233,12 +28416,14 @@ var domprops = [
|
|
28233
28416
|
"pow",
|
28234
28417
|
"powerEfficient",
|
28235
28418
|
"powerOff",
|
28419
|
+
"powerPreference",
|
28236
28420
|
"preMultiplySelf",
|
28237
28421
|
"precision",
|
28238
28422
|
"preferredStyleSheetSet",
|
28239
28423
|
"preferredStylesheetSet",
|
28240
28424
|
"prefix",
|
28241
28425
|
"preload",
|
28426
|
+
"premultipliedAlpha",
|
28242
28427
|
"prepend",
|
28243
28428
|
"presentation",
|
28244
28429
|
"preserveAlpha",
|
@@ -28258,6 +28443,7 @@ var domprops = [
|
|
28258
28443
|
"previousSibling",
|
28259
28444
|
"previousTranslate",
|
28260
28445
|
"primaryKey",
|
28446
|
+
"primitive",
|
28261
28447
|
"primitiveType",
|
28262
28448
|
"primitiveUnits",
|
28263
28449
|
"principals",
|
@@ -28295,6 +28481,8 @@ var domprops = [
|
|
28295
28481
|
"published",
|
28296
28482
|
"pulse",
|
28297
28483
|
"push",
|
28484
|
+
"pushDebugGroup",
|
28485
|
+
"pushErrorScope",
|
28298
28486
|
"pushManager",
|
28299
28487
|
"pushNotification",
|
28300
28488
|
"pushState",
|
@@ -28313,6 +28501,8 @@ var domprops = [
|
|
28313
28501
|
"queryCommandValue",
|
28314
28502
|
"querySelector",
|
28315
28503
|
"querySelectorAll",
|
28504
|
+
"querySet",
|
28505
|
+
"queue",
|
28316
28506
|
"queueMicrotask",
|
28317
28507
|
"quote",
|
28318
28508
|
"quotes",
|
@@ -28469,6 +28659,8 @@ var domprops = [
|
|
28469
28659
|
"replaceWith",
|
28470
28660
|
"reportValidity",
|
28471
28661
|
"request",
|
28662
|
+
"requestAdapter",
|
28663
|
+
"requestAdapterInfo",
|
28472
28664
|
"requestAnimationFrame",
|
28473
28665
|
"requestAutocomplete",
|
28474
28666
|
"requestData",
|
@@ -28496,6 +28688,7 @@ var domprops = [
|
|
28496
28688
|
"required",
|
28497
28689
|
"requiredExtensions",
|
28498
28690
|
"requiredFeatures",
|
28691
|
+
"requiredLimits",
|
28499
28692
|
"reset",
|
28500
28693
|
"resetPose",
|
28501
28694
|
"resetTransform",
|
@@ -28503,6 +28696,9 @@ var domprops = [
|
|
28503
28696
|
"resizeBy",
|
28504
28697
|
"resizeTo",
|
28505
28698
|
"resolve",
|
28699
|
+
"resolveQuerySet",
|
28700
|
+
"resolveTarget",
|
28701
|
+
"resource",
|
28506
28702
|
"response",
|
28507
28703
|
"responseBody",
|
28508
28704
|
"responseEnd",
|
@@ -28557,6 +28753,7 @@ var domprops = [
|
|
28557
28753
|
"rowIndex",
|
28558
28754
|
"rowSpan",
|
28559
28755
|
"rows",
|
28756
|
+
"rowsPerImage",
|
28560
28757
|
"rtcpTransport",
|
28561
28758
|
"rtt",
|
28562
28759
|
"ruby-align",
|
@@ -28572,8 +28769,11 @@ var domprops = [
|
|
28572
28769
|
"s",
|
28573
28770
|
"safari",
|
28574
28771
|
"sample",
|
28772
|
+
"sampleCount",
|
28575
28773
|
"sampleCoverage",
|
28576
28774
|
"sampleRate",
|
28775
|
+
"sampleType",
|
28776
|
+
"sampler",
|
28577
28777
|
"samplerParameterf",
|
28578
28778
|
"samplerParameteri",
|
28579
28779
|
"sandbox",
|
@@ -28752,7 +28952,9 @@ var domprops = [
|
|
28752
28952
|
"setBaseAndExtent",
|
28753
28953
|
"setBigInt64",
|
28754
28954
|
"setBigUint64",
|
28955
|
+
"setBindGroup",
|
28755
28956
|
"setBingCurrentSearchDefault",
|
28957
|
+
"setBlendConstant",
|
28756
28958
|
"setCapture",
|
28757
28959
|
"setCodecPreferences",
|
28758
28960
|
"setColor",
|
@@ -28778,6 +28980,7 @@ var domprops = [
|
|
28778
28980
|
"setHours",
|
28779
28981
|
"setIdentityProvider",
|
28780
28982
|
"setImmediate",
|
28983
|
+
"setIndexBuffer",
|
28781
28984
|
"setInt16",
|
28782
28985
|
"setInt32",
|
28783
28986
|
"setInt8",
|
@@ -28808,6 +29011,7 @@ var domprops = [
|
|
28808
29011
|
"setParameter",
|
28809
29012
|
"setParameters",
|
28810
29013
|
"setPeriodicWave",
|
29014
|
+
"setPipeline",
|
28811
29015
|
"setPointerCapture",
|
28812
29016
|
"setPosition",
|
28813
29017
|
"setPositionState",
|
@@ -28824,6 +29028,7 @@ var domprops = [
|
|
28824
29028
|
"setResourceTimingBufferSize",
|
28825
29029
|
"setRotate",
|
28826
29030
|
"setScale",
|
29031
|
+
"setScissorRect",
|
28827
29032
|
"setSeconds",
|
28828
29033
|
"setSelectionRange",
|
28829
29034
|
"setServerCertificate",
|
@@ -28835,6 +29040,7 @@ var domprops = [
|
|
28835
29040
|
"setStartAfter",
|
28836
29041
|
"setStartBefore",
|
28837
29042
|
"setStdDeviation",
|
29043
|
+
"setStencilReference",
|
28838
29044
|
"setStreams",
|
28839
29045
|
"setStringValue",
|
28840
29046
|
"setStrokeColor",
|
@@ -28862,10 +29068,13 @@ var domprops = [
|
|
28862
29068
|
"setVariable",
|
28863
29069
|
"setVelocity",
|
28864
29070
|
"setVersion",
|
29071
|
+
"setVertexBuffer",
|
29072
|
+
"setViewport",
|
28865
29073
|
"setYear",
|
28866
29074
|
"settingName",
|
28867
29075
|
"settingValue",
|
28868
29076
|
"sex",
|
29077
|
+
"shaderLocation",
|
28869
29078
|
"shaderSource",
|
28870
29079
|
"shadowBlur",
|
28871
29080
|
"shadowColor",
|
@@ -28933,6 +29142,7 @@ var domprops = [
|
|
28933
29142
|
"sourceCapabilities",
|
28934
29143
|
"sourceFile",
|
28935
29144
|
"sourceIndex",
|
29145
|
+
"sourceMap",
|
28936
29146
|
"sources",
|
28937
29147
|
"spacing",
|
28938
29148
|
"span",
|
@@ -28954,6 +29164,7 @@ var domprops = [
|
|
28954
29164
|
"sqrt",
|
28955
29165
|
"src",
|
28956
29166
|
"srcElement",
|
29167
|
+
"srcFactor",
|
28957
29168
|
"srcFilter",
|
28958
29169
|
"srcObject",
|
28959
29170
|
"srcUrn",
|
@@ -28985,15 +29196,24 @@ var domprops = [
|
|
28985
29196
|
"statusbar",
|
28986
29197
|
"stdDeviationX",
|
28987
29198
|
"stdDeviationY",
|
29199
|
+
"stencilBack",
|
29200
|
+
"stencilClearValue",
|
29201
|
+
"stencilFront",
|
28988
29202
|
"stencilFunc",
|
28989
29203
|
"stencilFuncSeparate",
|
29204
|
+
"stencilLoadOp",
|
28990
29205
|
"stencilMask",
|
28991
29206
|
"stencilMaskSeparate",
|
28992
29207
|
"stencilOp",
|
28993
29208
|
"stencilOpSeparate",
|
29209
|
+
"stencilReadMask",
|
29210
|
+
"stencilReadOnly",
|
29211
|
+
"stencilStoreOp",
|
29212
|
+
"stencilWriteMask",
|
28994
29213
|
"step",
|
28995
29214
|
"stepDown",
|
28996
29215
|
"stepMismatch",
|
29216
|
+
"stepMode",
|
28997
29217
|
"stepUp",
|
28998
29218
|
"sticky",
|
28999
29219
|
"stitchTiles",
|
@@ -29012,7 +29232,9 @@ var domprops = [
|
|
29012
29232
|
"storageArea",
|
29013
29233
|
"storageName",
|
29014
29234
|
"storageStatus",
|
29235
|
+
"storageTexture",
|
29015
29236
|
"store",
|
29237
|
+
"storeOp",
|
29016
29238
|
"storeSiteSpecificTrackingException",
|
29017
29239
|
"storeWebWideTrackingException",
|
29018
29240
|
"stpVersion",
|
@@ -29023,6 +29245,7 @@ var domprops = [
|
|
29023
29245
|
"string",
|
29024
29246
|
"stringValue",
|
29025
29247
|
"stringify",
|
29248
|
+
"stripIndexFormat",
|
29026
29249
|
"stroke",
|
29027
29250
|
"stroke-dasharray",
|
29028
29251
|
"stroke-dashoffset",
|
@@ -29110,6 +29333,7 @@ var domprops = [
|
|
29110
29333
|
"targetTouches",
|
29111
29334
|
"targetX",
|
29112
29335
|
"targetY",
|
29336
|
+
"targets",
|
29113
29337
|
"tcpType",
|
29114
29338
|
"tee",
|
29115
29339
|
"tel",
|
@@ -29183,6 +29407,7 @@ var domprops = [
|
|
29183
29407
|
"textTransform",
|
29184
29408
|
"textUnderlineOffset",
|
29185
29409
|
"textUnderlinePosition",
|
29410
|
+
"texture",
|
29186
29411
|
"then",
|
29187
29412
|
"threadId",
|
29188
29413
|
"threshold",
|
@@ -29201,6 +29426,7 @@ var domprops = [
|
|
29201
29426
|
"timeout",
|
29202
29427
|
"timestamp",
|
29203
29428
|
"timestampOffset",
|
29429
|
+
"timestampWrites",
|
29204
29430
|
"timing",
|
29205
29431
|
"title",
|
29206
29432
|
"to",
|
@@ -29246,6 +29472,7 @@ var domprops = [
|
|
29246
29472
|
"toolbar",
|
29247
29473
|
"top",
|
29248
29474
|
"topMargin",
|
29475
|
+
"topology",
|
29249
29476
|
"total",
|
29250
29477
|
"totalFrameDelay",
|
29251
29478
|
"totalVideoFrames",
|
@@ -29314,6 +29541,8 @@ var domprops = [
|
|
29314
29541
|
"uint32",
|
29315
29542
|
"uint8",
|
29316
29543
|
"uint8Clamped",
|
29544
|
+
"unclippedDepth",
|
29545
|
+
"unconfigure",
|
29317
29546
|
"undefined",
|
29318
29547
|
"unescape",
|
29319
29548
|
"uneval",
|
@@ -29364,6 +29593,7 @@ var domprops = [
|
|
29364
29593
|
"unloadEventEnd",
|
29365
29594
|
"unloadEventStart",
|
29366
29595
|
"unlock",
|
29596
|
+
"unmap",
|
29367
29597
|
"unmount",
|
29368
29598
|
"unobserve",
|
29369
29599
|
"unpause",
|
@@ -29407,6 +29637,7 @@ var domprops = [
|
|
29407
29637
|
"url",
|
29408
29638
|
"urn",
|
29409
29639
|
"urns",
|
29640
|
+
"usage",
|
29410
29641
|
"usages",
|
29411
29642
|
"usb",
|
29412
29643
|
"usbVersionMajor",
|
@@ -29462,6 +29693,7 @@ var domprops = [
|
|
29462
29693
|
"vendorSub",
|
29463
29694
|
"verify",
|
29464
29695
|
"version",
|
29696
|
+
"vertex",
|
29465
29697
|
"vertexAttrib1f",
|
29466
29698
|
"vertexAttrib1fv",
|
29467
29699
|
"vertexAttrib2f",
|
@@ -29492,6 +29724,8 @@ var domprops = [
|
|
29492
29724
|
"view",
|
29493
29725
|
"viewBox",
|
29494
29726
|
"viewBoxString",
|
29727
|
+
"viewDimension",
|
29728
|
+
"viewFormats",
|
29495
29729
|
"viewTarget",
|
29496
29730
|
"viewTargetString",
|
29497
29731
|
"viewport",
|
@@ -29710,6 +29944,7 @@ var domprops = [
|
|
29710
29944
|
"webkitdropzone",
|
29711
29945
|
"webstore",
|
29712
29946
|
"weight",
|
29947
|
+
"wgslLanguageFeatures",
|
29713
29948
|
"whatToShow",
|
29714
29949
|
"wheelDelta",
|
29715
29950
|
"wheelDeltaX",
|
@@ -29739,7 +29974,11 @@ var domprops = [
|
|
29739
29974
|
"writable",
|
29740
29975
|
"writableAuxiliaries",
|
29741
29976
|
"write",
|
29977
|
+
"writeBuffer",
|
29978
|
+
"writeMask",
|
29742
29979
|
"writeText",
|
29980
|
+
"writeTexture",
|
29981
|
+
"writeTimestamp",
|
29743
29982
|
"writeValue",
|
29744
29983
|
"writeWithoutResponse",
|
29745
29984
|
"writeln",
|
@@ -30365,6 +30604,9 @@ async function minify(files, options, _fs_module) {
|
|
30365
30604
|
}
|
30366
30605
|
}
|
30367
30606
|
}
|
30607
|
+
if (options.parse.toplevel === null) {
|
30608
|
+
throw new Error("no source file given");
|
30609
|
+
}
|
30368
30610
|
|
30369
30611
|
toplevel = options.parse.toplevel;
|
30370
30612
|
}
|