@webref/idl 3.64.1 → 3.65.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/crash-reporting.idl +1 -1
- package/dom.idl +1 -1
- package/element-timing.idl +1 -1
- package/html.idl +6 -4
- package/package.json +1 -1
- package/pointer-animations.idl +23 -0
- package/privacy-preserving-attribution.idl +4 -1
- package/resource-timing.idl +1 -0
- package/secure-payment-confirmation.idl +20 -1
- package/wai-aria.idl +1 -1
package/crash-reporting.idl
CHANGED
|
@@ -8,6 +8,6 @@ interface CrashReportBody : ReportBody {
|
|
|
8
8
|
[Default] object toJSON();
|
|
9
9
|
readonly attribute DOMString? reason;
|
|
10
10
|
readonly attribute DOMString? stack;
|
|
11
|
-
readonly attribute
|
|
11
|
+
readonly attribute boolean? is_top_level;
|
|
12
12
|
readonly attribute DocumentVisibilityState? page_visibility;
|
|
13
13
|
};
|
package/dom.idl
CHANGED
|
@@ -324,7 +324,7 @@ dictionary ImportNodeOptions {
|
|
|
324
324
|
|
|
325
325
|
[Exposed=Window]
|
|
326
326
|
interface DOMImplementation {
|
|
327
|
-
[NewObject] DocumentType createDocumentType(DOMString
|
|
327
|
+
[NewObject] DocumentType createDocumentType(DOMString name, DOMString publicId, DOMString systemId);
|
|
328
328
|
[NewObject] XMLDocument createDocument(DOMString? namespace, [LegacyNullToEmptyString] DOMString qualifiedName, optional DocumentType? doctype = null);
|
|
329
329
|
[NewObject] Document createHTMLDocument(optional DOMString title);
|
|
330
330
|
|
package/element-timing.idl
CHANGED
|
@@ -13,7 +13,7 @@ interface PerformanceElementTiming : PerformanceEntry {
|
|
|
13
13
|
readonly attribute unsigned long naturalHeight;
|
|
14
14
|
readonly attribute DOMString id;
|
|
15
15
|
readonly attribute Element? element;
|
|
16
|
-
readonly attribute
|
|
16
|
+
readonly attribute USVString url;
|
|
17
17
|
[Default] object toJSON();
|
|
18
18
|
};
|
|
19
19
|
|
package/html.idl
CHANGED
|
@@ -1235,18 +1235,19 @@ interface HTMLDialogElement : HTMLElement {
|
|
|
1235
1235
|
interface HTMLScriptElement : HTMLElement {
|
|
1236
1236
|
[HTMLConstructor] constructor();
|
|
1237
1237
|
|
|
1238
|
-
[CEReactions] attribute USVString src;
|
|
1239
1238
|
[CEReactions] attribute DOMString type;
|
|
1239
|
+
[CEReactions] attribute USVString src;
|
|
1240
1240
|
[CEReactions] attribute boolean noModule;
|
|
1241
1241
|
[CEReactions] attribute boolean async;
|
|
1242
1242
|
[CEReactions] attribute boolean defer;
|
|
1243
|
+
[SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
|
1243
1244
|
[CEReactions] attribute DOMString? crossOrigin;
|
|
1244
|
-
[CEReactions] attribute DOMString text;
|
|
1245
|
-
[CEReactions] attribute DOMString integrity;
|
|
1246
1245
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
1247
|
-
[
|
|
1246
|
+
[CEReactions] attribute DOMString integrity;
|
|
1248
1247
|
[CEReactions] attribute DOMString fetchPriority;
|
|
1249
1248
|
|
|
1249
|
+
[CEReactions] attribute DOMString text;
|
|
1250
|
+
|
|
1250
1251
|
static boolean supports(DOMString type);
|
|
1251
1252
|
|
|
1252
1253
|
// also has obsolete members
|
|
@@ -1694,6 +1695,7 @@ interface ToggleEvent : Event {
|
|
|
1694
1695
|
constructor(DOMString type, optional ToggleEventInit eventInitDict = {});
|
|
1695
1696
|
readonly attribute DOMString oldState;
|
|
1696
1697
|
readonly attribute DOMString newState;
|
|
1698
|
+
readonly attribute Element? source;
|
|
1697
1699
|
};
|
|
1698
1700
|
|
|
1699
1701
|
dictionary ToggleEventInit : EventInit {
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Pointer-driven Animations (https://drafts.csswg.org/pointer-animations-1/)
|
|
5
|
+
|
|
6
|
+
enum PointerAxis {
|
|
7
|
+
"block",
|
|
8
|
+
"inline",
|
|
9
|
+
"x",
|
|
10
|
+
"y"
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
dictionary PointerTimelineOptions {
|
|
14
|
+
Element? source;
|
|
15
|
+
PointerAxis axis = "block";
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
[Exposed=Window]
|
|
19
|
+
interface PointerTimeline : AnimationTimeline {
|
|
20
|
+
constructor(optional PointerTimelineOptions options = {});
|
|
21
|
+
readonly attribute Element? source;
|
|
22
|
+
readonly attribute PointerAxis axis;
|
|
23
|
+
};
|
|
@@ -30,9 +30,12 @@ dictionary PrivateAttributionImpressionOptions {
|
|
|
30
30
|
unsigned long lifetimeDays = 30;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
dictionary PrivateAttributionImpressionResult {
|
|
34
|
+
};
|
|
35
|
+
|
|
33
36
|
[SecureContext, Exposed=Window]
|
|
34
37
|
partial interface PrivateAttribution {
|
|
35
|
-
|
|
38
|
+
Promise<PrivateAttributionImpressionResult> saveImpression(PrivateAttributionImpressionOptions options);
|
|
36
39
|
};
|
|
37
40
|
|
|
38
41
|
dictionary PrivateAttributionConversionOptions {
|
package/resource-timing.idl
CHANGED
|
@@ -28,6 +28,7 @@ interface PerformanceResourceTiming : PerformanceEntry {
|
|
|
28
28
|
readonly attribute unsigned short responseStatus;
|
|
29
29
|
readonly attribute RenderBlockingStatusType renderBlockingStatus;
|
|
30
30
|
readonly attribute DOMString contentType;
|
|
31
|
+
readonly attribute DOMString contentEncoding;
|
|
31
32
|
[Default] object toJSON();
|
|
32
33
|
};
|
|
33
34
|
|
|
@@ -13,6 +13,7 @@ dictionary SecurePaymentConfirmationRequest {
|
|
|
13
13
|
USVString payeeOrigin;
|
|
14
14
|
sequence<PaymentEntityLogo> paymentEntitiesLogos;
|
|
15
15
|
AuthenticationExtensionsClientInputs extensions;
|
|
16
|
+
sequence<PublicKeyCredentialParameters> browserBoundPubKeyCredParams;
|
|
16
17
|
sequence<USVString> locale;
|
|
17
18
|
boolean showOptOut;
|
|
18
19
|
};
|
|
@@ -35,6 +36,7 @@ partial dictionary AuthenticationExtensionsClientInputs {
|
|
|
35
36
|
|
|
36
37
|
dictionary AuthenticationExtensionsPaymentInputs {
|
|
37
38
|
boolean isPayment;
|
|
39
|
+
sequence<PublicKeyCredentialParameters> browserBoundPubKeyCredParams;
|
|
38
40
|
|
|
39
41
|
// Only used for authentication.
|
|
40
42
|
USVString rpId;
|
|
@@ -46,8 +48,20 @@ dictionary AuthenticationExtensionsPaymentInputs {
|
|
|
46
48
|
PaymentCredentialInstrument instrument;
|
|
47
49
|
};
|
|
48
50
|
|
|
51
|
+
partial dictionary AuthenticationExtensionsClientOutputs {
|
|
52
|
+
AuthenticationExtensionsPaymentOutputs payment;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
dictionary AuthenticationExtensionsPaymentOutputs {
|
|
56
|
+
BrowserBoundSignature browserBoundSignature;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
dictionary BrowserBoundSignature {
|
|
60
|
+
required ArrayBuffer signature;
|
|
61
|
+
};
|
|
62
|
+
|
|
49
63
|
dictionary CollectedClientPaymentData : CollectedClientData {
|
|
50
|
-
required CollectedClientAdditionalPaymentData payment;
|
|
64
|
+
required (CollectedClientAdditionalPaymentData or CollectedClientAdditionalPaymentRegistrationData) payment;
|
|
51
65
|
};
|
|
52
66
|
|
|
53
67
|
dictionary CollectedClientAdditionalPaymentData {
|
|
@@ -58,6 +72,11 @@ dictionary CollectedClientAdditionalPaymentData {
|
|
|
58
72
|
sequence<PaymentEntityLogo> paymentEntitiesLogos;
|
|
59
73
|
required PaymentCurrencyAmount total;
|
|
60
74
|
required PaymentCredentialInstrument instrument;
|
|
75
|
+
USVString browserBoundPublicKey;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
dictionary CollectedClientAdditionalPaymentRegistrationData {
|
|
79
|
+
USVString browserBoundPublicKey;
|
|
61
80
|
};
|
|
62
81
|
|
|
63
82
|
dictionary PaymentCredentialInstrument {
|
package/wai-aria.idl
CHANGED