@webref/idl 3.71.1 → 3.72.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.
@@ -0,0 +1,22 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: Autofill Event (https://wicg.github.io/autofill-event/)
5
+
6
+ [Exposed=Window]
7
+ interface AutofillEvent : Event {
8
+ constructor(DOMString type, optional AutofillEventInit eventInitDict = {});
9
+ readonly attribute FrozenArray<AutofillValueEntry> autofillValues;
10
+ readonly attribute RefillCallback? refill;
11
+ };
12
+
13
+ callback RefillCallback = Promise<undefined> ();
14
+
15
+ dictionary AutofillEventInit : EventInit {
16
+ sequence<AutofillValueEntry> autofillValues = [];
17
+ boolean allowRefill = true;
18
+ };
19
+
20
+ typedef sequence<any> AutofillValueEntry;
21
+ // AutofillValueEntry is a tuple of [HTMLElement, DOMString]
22
+ // where the first element is the form control and the second is the value to fill
@@ -8,4 +8,16 @@ dictionary CrashReportBody : ReportBody {
8
8
  DOMString stack;
9
9
  boolean is_top_level;
10
10
  DocumentVisibilityState visibility_state;
11
+ object crash_report_api;
12
+ };
13
+
14
+ partial interface Window {
15
+ readonly attribute CrashReportContext crashReport;
16
+ };
17
+
18
+ [Exposed=Window]
19
+ interface CrashReportContext {
20
+ Promise<undefined> initialize(unsigned long long length);
21
+ undefined set(DOMString key, DOMString value);
22
+ undefined delete(DOMString key);
11
23
  };
@@ -8,7 +8,6 @@ interface Credential {
8
8
  readonly attribute USVString id;
9
9
  readonly attribute DOMString type;
10
10
  static Promise<boolean> isConditionalMediationAvailable();
11
- static Promise<undefined> willRequestConditionalCreation();
12
11
  };
13
12
 
14
13
  [SecureContext]
package/css-mixins.idl CHANGED
@@ -25,3 +25,29 @@ interface CSSFunctionDescriptors : CSSStyleDeclaration {
25
25
  interface CSSFunctionDeclarations : CSSRule {
26
26
  [SameObject, PutForwards=cssText] readonly attribute CSSFunctionDescriptors style;
27
27
  };
28
+
29
+ [Exposed=Window]
30
+ interface CSSMixinRule : CSSGroupingRule {
31
+ readonly attribute CSSOMString name;
32
+ sequence<FunctionParameter> getParameters();
33
+ readonly attribute boolean contents;
34
+ };
35
+
36
+ [Exposed=Window]
37
+ interface CSSApplyBlockRule : CSSGroupingRule {
38
+ readonly attribute CSSOMString name;
39
+ sequence<CSSOMString> getArguments();
40
+ };
41
+
42
+ [Exposed=Window]
43
+ interface CSSApplyStatementRule : CSSRule {
44
+
45
+ readonly attribute CSSOMString name;
46
+ sequence<CSSOMString> getArguments();
47
+ };
48
+
49
+ [Exposed=Window]
50
+ interface CSSContentsBlockRule : CSSGroupingRule { };
51
+
52
+ [Exposed=Window]
53
+ interface CSSContentsStatementRule : CSSRule { };
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.71.1",
4
+ "version": "3.72.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -6,7 +6,7 @@
6
6
  [Exposed=Window] interface XRMesh {
7
7
  [SameObject] readonly attribute XRSpace meshSpace;
8
8
 
9
- readonly attribute FrozenArray<Float32Array> vertices;
9
+ readonly attribute Float32Array vertices;
10
10
  readonly attribute Uint32Array indices;
11
11
  readonly attribute DOMHighResTimeStamp lastChangedTime;
12
12
  readonly attribute DOMString? semanticLabel;
package/serial.idl CHANGED
@@ -37,8 +37,8 @@ interface SerialPort : EventTarget {
37
37
  attribute EventHandler onconnect;
38
38
  attribute EventHandler ondisconnect;
39
39
  readonly attribute boolean connected;
40
- readonly attribute ReadableStream readable;
41
- readonly attribute WritableStream writable;
40
+ readonly attribute ReadableStream? readable;
41
+ readonly attribute WritableStream? writable;
42
42
 
43
43
  SerialPortInfo getInfo();
44
44