@webref/idl 3.7.2 → 3.8.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/html.idl CHANGED
@@ -496,16 +496,6 @@ interface HTMLObjectElement : HTMLElement {
496
496
  // also has obsolete members
497
497
  };
498
498
 
499
- [Exposed=Window]
500
- interface HTMLParamElement : HTMLElement {
501
- [HTMLConstructor] constructor();
502
-
503
- [CEReactions] attribute DOMString name;
504
- [CEReactions] attribute DOMString value;
505
-
506
- // also has obsolete members
507
- };
508
-
509
499
  [Exposed=Window]
510
500
  interface HTMLVideoElement : HTMLMediaElement {
511
501
  [HTMLConstructor] constructor();
@@ -2593,7 +2583,12 @@ partial interface HTMLParagraphElement {
2593
2583
  [CEReactions] attribute DOMString align;
2594
2584
  };
2595
2585
 
2596
- partial interface HTMLParamElement {
2586
+ [Exposed=Window]
2587
+ interface HTMLParamElement : HTMLElement {
2588
+ [HTMLConstructor] constructor();
2589
+
2590
+ [CEReactions] attribute DOMString name;
2591
+ [CEReactions] attribute DOMString value;
2597
2592
  [CEReactions] attribute DOMString type;
2598
2593
  [CEReactions] attribute DOMString valueType;
2599
2594
  };
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.7.2",
4
+ "version": "3.8.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -0,0 +1,42 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: Multi-Screen Window Placement (https://w3c.github.io/window-placement/)
5
+
6
+ partial interface Screen /* : EventTarget */ {
7
+ [SecureContext]
8
+ readonly attribute boolean isExtended;
9
+
10
+ [SecureContext]
11
+ attribute EventHandler onchange;
12
+ };
13
+
14
+ partial interface Window {
15
+ [SecureContext]
16
+ Promise<ScreenDetails> getScreenDetails();
17
+ };
18
+
19
+ [Exposed=Window, SecureContext]
20
+ interface ScreenDetails : EventTarget {
21
+ readonly attribute FrozenArray<ScreenDetailed> screens;
22
+ readonly attribute ScreenDetailed currentScreen;
23
+
24
+ attribute EventHandler onscreenschange;
25
+ attribute EventHandler oncurrentscreenchange;
26
+ };
27
+
28
+ [Exposed=Window, SecureContext]
29
+ interface ScreenDetailed : Screen {
30
+ readonly attribute long availLeft;
31
+ readonly attribute long availTop;
32
+ readonly attribute long left;
33
+ readonly attribute long top;
34
+ readonly attribute boolean isPrimary;
35
+ readonly attribute boolean isInternal;
36
+ readonly attribute float devicePixelRatio;
37
+ readonly attribute DOMString label;
38
+ };
39
+
40
+ partial dictionary FullscreenOptions {
41
+ ScreenDetailed screen;
42
+ };