@webref/idl 3.43.1 → 3.43.2
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/contact-picker.idl +1 -1
- package/css-anchor-position.idl +1 -5
- package/css-fonts.idl +1 -0
- package/edit-context.idl +1 -1
- package/html.idl +1 -0
- package/package.json +1 -1
- package/turtledove.idl +26 -2
- package/webnn.idl +3 -26
package/contact-picker.idl
CHANGED
|
@@ -37,7 +37,7 @@ dictionary ContactsSelectOptions {
|
|
|
37
37
|
boolean multiple = false;
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
-
[Exposed=Window,SecureContext]
|
|
40
|
+
[Exposed=Window, SecureContext]
|
|
41
41
|
interface ContactsManager {
|
|
42
42
|
Promise<sequence<ContactProperty>> getProperties();
|
|
43
43
|
Promise<sequence<ContactInfo>> select(sequence<ContactProperty> properties, optional ContactsSelectOptions options = {});
|
package/css-anchor-position.idl
CHANGED
|
@@ -4,11 +4,7 @@
|
|
|
4
4
|
// Source: CSS Anchor Positioning (https://drafts.csswg.org/css-anchor-position-1/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
|
-
interface
|
|
7
|
+
interface CSSPositionTryRule : CSSRule {
|
|
8
8
|
readonly attribute CSSOMString name;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
[Exposed=Window]
|
|
12
|
-
interface CSSTryRule : CSSRule {
|
|
13
9
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
14
10
|
};
|
package/css-fonts.idl
CHANGED
|
@@ -19,6 +19,7 @@ interface CSSFontFeatureValuesRule : CSSRule {
|
|
|
19
19
|
readonly attribute CSSFontFeatureValuesMap swash;
|
|
20
20
|
readonly attribute CSSFontFeatureValuesMap characterVariant;
|
|
21
21
|
readonly attribute CSSFontFeatureValuesMap styleset;
|
|
22
|
+
readonly attribute CSSFontFeatureValuesMap historicalForms;
|
|
22
23
|
};
|
|
23
24
|
|
|
24
25
|
[Exposed=Window]
|
package/edit-context.idl
CHANGED
|
@@ -59,7 +59,7 @@ interface TextUpdateEvent : Event {
|
|
|
59
59
|
readonly attribute unsigned long selectionEnd;
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
enum UnderlineStyle { "none", "solid", "
|
|
62
|
+
enum UnderlineStyle { "none", "solid", "dotted", "dashed", "wavy" };
|
|
63
63
|
enum UnderlineThickness { "none", "thin", "thick" };
|
|
64
64
|
|
|
65
65
|
dictionary TextFormatInit {
|
package/html.idl
CHANGED
|
@@ -1243,6 +1243,7 @@ interface HTMLTemplateElement : HTMLElement {
|
|
|
1243
1243
|
readonly attribute DocumentFragment content;
|
|
1244
1244
|
[CEReactions] attribute DOMString shadowRootMode;
|
|
1245
1245
|
[CEReactions] attribute boolean shadowRootDelegatesFocus;
|
|
1246
|
+
[CEReactions] attribute boolean shadowRootClonable;
|
|
1246
1247
|
};
|
|
1247
1248
|
|
|
1248
1249
|
[Exposed=Window]
|
package/package.json
CHANGED
package/turtledove.idl
CHANGED
|
@@ -100,11 +100,24 @@ partial interface Navigator {
|
|
|
100
100
|
interface InterestGroupScriptRunnerGlobalScope {
|
|
101
101
|
};
|
|
102
102
|
|
|
103
|
+
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
104
|
+
interface ForDebuggingOnly {
|
|
105
|
+
undefined reportAdAuctionWin(USVString url);
|
|
106
|
+
undefined reportAdAuctionLoss(USVString url);
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope,
|
|
110
|
+
Global=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
111
|
+
interface InterestGroupBiddingAndScoringScriptRunnerGlobalScope : InterestGroupScriptRunnerGlobalScope {
|
|
112
|
+
|
|
113
|
+
readonly attribute ForDebuggingOnly forDebuggingOnly;
|
|
114
|
+
};
|
|
115
|
+
|
|
103
116
|
[Exposed=InterestGroupBiddingScriptRunnerGlobalScope,
|
|
104
117
|
Global=(InterestGroupScriptRunnerGlobalScope,
|
|
105
118
|
InterestGroupBiddingScriptRunnerGlobalScope)]
|
|
106
119
|
interface InterestGroupBiddingScriptRunnerGlobalScope
|
|
107
|
-
:
|
|
120
|
+
: InterestGroupBiddingAndScoringScriptRunnerGlobalScope {
|
|
108
121
|
boolean setBid(optional GenerateBidOutput generateBidOutput = {});
|
|
109
122
|
undefined setPriority(double priority);
|
|
110
123
|
undefined setPrioritySignalsOverride(DOMString key, optional double? priority);
|
|
@@ -131,7 +144,7 @@ dictionary GenerateBidOutput {
|
|
|
131
144
|
Global=(InterestGroupScriptRunnerGlobalScope,
|
|
132
145
|
InterestGroupScoringScriptRunnerGlobalScope)]
|
|
133
146
|
interface InterestGroupScoringScriptRunnerGlobalScope
|
|
134
|
-
:
|
|
147
|
+
: InterestGroupBiddingAndScoringScriptRunnerGlobalScope {
|
|
135
148
|
};
|
|
136
149
|
|
|
137
150
|
[Exposed=InterestGroupReportingScriptRunnerGlobalScope,
|
|
@@ -149,6 +162,16 @@ partial interface Navigator {
|
|
|
149
162
|
undefined updateAdInterestGroups();
|
|
150
163
|
};
|
|
151
164
|
|
|
165
|
+
[SecureContext]
|
|
166
|
+
partial interface Navigator {
|
|
167
|
+
[SameObject] readonly attribute ProtectedAudience protectedAudience;
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
[SecureContext, Exposed=Window]
|
|
171
|
+
interface ProtectedAudience {
|
|
172
|
+
any queryFeatureSupport(DOMString feature);
|
|
173
|
+
};
|
|
174
|
+
|
|
152
175
|
partial dictionary RequestInit {
|
|
153
176
|
boolean adAuctionHeaders;
|
|
154
177
|
};
|
|
@@ -168,6 +191,7 @@ dictionary BiddingBrowserSignals {
|
|
|
168
191
|
required long joinCount;
|
|
169
192
|
required long bidCount;
|
|
170
193
|
required long recency;
|
|
194
|
+
required long adComponentsLimit;
|
|
171
195
|
|
|
172
196
|
USVString topLevelSeller;
|
|
173
197
|
sequence<PreviousWin> prevWinsMs;
|
package/webnn.idl
CHANGED
|
@@ -40,25 +40,6 @@ interface ML {
|
|
|
40
40
|
interface MLActivation {
|
|
41
41
|
};
|
|
42
42
|
|
|
43
|
-
typedef (GPUBuffer or GPUTexture) MLGPUResource;
|
|
44
|
-
|
|
45
|
-
typedef record<DOMString, MLGPUResource> MLNamedGPUResources;
|
|
46
|
-
|
|
47
|
-
[SecureContext, Exposed=(Window, DedicatedWorker)]
|
|
48
|
-
interface MLCommandEncoder {};
|
|
49
|
-
|
|
50
|
-
partial interface MLCommandEncoder {
|
|
51
|
-
undefined initializeGraph(MLGraph graph);
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
partial interface MLCommandEncoder {
|
|
55
|
-
undefined dispatch(MLGraph graph, MLNamedGPUResources inputs, MLNamedGPUResources outputs);
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
partial interface MLCommandEncoder {
|
|
59
|
-
GPUCommandBuffer finish(optional GPUCommandBufferDescriptor descriptor = {});
|
|
60
|
-
};
|
|
61
|
-
|
|
62
43
|
typedef record<DOMString, ArrayBufferView> MLNamedArrayBufferViews;
|
|
63
44
|
|
|
64
45
|
[SecureContext, Exposed=(Window, DedicatedWorker)]
|
|
@@ -80,10 +61,6 @@ partial interface MLContext {
|
|
|
80
61
|
MLGraph graph, MLNamedArrayBufferViews inputs, MLNamedArrayBufferViews outputs);
|
|
81
62
|
};
|
|
82
63
|
|
|
83
|
-
partial interface MLContext {
|
|
84
|
-
MLCommandEncoder createCommandEncoder();
|
|
85
|
-
};
|
|
86
|
-
|
|
87
64
|
[SecureContext, Exposed=(Window, DedicatedWorker)]
|
|
88
65
|
interface MLGraph {};
|
|
89
66
|
|
|
@@ -120,7 +97,7 @@ interface MLGraphBuilder {
|
|
|
120
97
|
};
|
|
121
98
|
|
|
122
99
|
dictionary MLArgMinMaxOptions {
|
|
123
|
-
sequence<unsigned long> axes
|
|
100
|
+
sequence<unsigned long> axes;
|
|
124
101
|
boolean keepDimensions = false;
|
|
125
102
|
boolean selectLastIndex = false;
|
|
126
103
|
};
|
|
@@ -469,7 +446,7 @@ partial interface MLGraphBuilder {
|
|
|
469
446
|
};
|
|
470
447
|
|
|
471
448
|
dictionary MLReduceOptions {
|
|
472
|
-
sequence<unsigned long> axes
|
|
449
|
+
sequence<unsigned long> axes;
|
|
473
450
|
boolean keepDimensions = false;
|
|
474
451
|
};
|
|
475
452
|
|
|
@@ -607,5 +584,5 @@ dictionary MLOperandDescriptor {
|
|
|
607
584
|
required MLOperandDataType dataType;
|
|
608
585
|
|
|
609
586
|
// The dimensions field is only required for tensor operands.
|
|
610
|
-
sequence<unsigned long> dimensions;
|
|
587
|
+
sequence<unsigned long> dimensions = [];
|
|
611
588
|
};
|