@webref/idl 3.64.1 → 3.64.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.
@@ -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 DOMString? is_top_level;
11
+ readonly attribute boolean? is_top_level;
12
12
  readonly attribute DocumentVisibilityState? page_visibility;
13
13
  };
@@ -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 DOMString url;
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
- [SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.64.1",
4
+ "version": "3.64.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -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
- undefined saveImpression(PrivateAttributionImpressionOptions options);
38
+ Promise<PrivateAttributionImpressionResult> saveImpression(PrivateAttributionImpressionOptions options);
36
39
  };
37
40
 
38
41
  dictionary PrivateAttributionConversionOptions {
@@ -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
 
package/wai-aria.idl CHANGED
@@ -57,4 +57,4 @@ interface mixin ARIAMixin {
57
57
  [CEReactions] attribute DOMString? ariaValueNow;
58
58
  [CEReactions] attribute DOMString? ariaValueText;
59
59
  };
60
- Element includes ARIAMixin;
60
+ Element includes ARIAMixin;