@webref/idl 3.73.1 → 3.73.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/css-pseudo.idl +2 -1
- package/html.idl +7 -2
- package/package.json +1 -1
- package/performance-timeline.idl +2 -2
- package/secure-payment-confirmation.idl +10 -0
- package/writing-assistance-apis.idl +3 -0
package/css-pseudo.idl
CHANGED
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
// Source: CSS Pseudo-Elements Module Level 4 (https://drafts.csswg.org/css-pseudo-4/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
|
-
interface CSSPseudoElement
|
|
7
|
+
interface CSSPseudoElement {
|
|
8
8
|
readonly attribute CSSOMString type;
|
|
9
9
|
readonly attribute Element element;
|
|
10
10
|
readonly attribute (Element or CSSPseudoElement) parent;
|
|
11
|
+
readonly attribute CSSOMString selectorText;
|
|
11
12
|
CSSPseudoElement? pseudo(CSSOMString type);
|
|
12
13
|
};
|
|
13
14
|
|
package/html.idl
CHANGED
|
@@ -363,6 +363,7 @@ interface HTMLAnchorElement : HTMLElement {
|
|
|
363
363
|
|
|
364
364
|
// also has obsolete members
|
|
365
365
|
};
|
|
366
|
+
HTMLAnchorElement includes HyperlinkElementUtils;
|
|
366
367
|
HTMLAnchorElement includes HTMLHyperlinkElementUtils;
|
|
367
368
|
|
|
368
369
|
[Exposed=Window]
|
|
@@ -391,8 +392,7 @@ interface HTMLBRElement : HTMLElement {
|
|
|
391
392
|
// also has obsolete members
|
|
392
393
|
};
|
|
393
394
|
|
|
394
|
-
interface mixin
|
|
395
|
-
[CEReactions, ReflectSetter] stringifier attribute USVString href;
|
|
395
|
+
interface mixin HyperlinkElementUtils {
|
|
396
396
|
readonly attribute USVString origin;
|
|
397
397
|
[CEReactions] attribute USVString protocol;
|
|
398
398
|
[CEReactions] attribute USVString username;
|
|
@@ -405,6 +405,10 @@ interface mixin HTMLHyperlinkElementUtils {
|
|
|
405
405
|
[CEReactions] attribute USVString hash;
|
|
406
406
|
};
|
|
407
407
|
|
|
408
|
+
interface mixin HTMLHyperlinkElementUtils {
|
|
409
|
+
[CEReactions, ReflectSetter] stringifier attribute USVString href;
|
|
410
|
+
};
|
|
411
|
+
|
|
408
412
|
[Exposed=Window]
|
|
409
413
|
interface HTMLModElement : HTMLElement {
|
|
410
414
|
[HTMLConstructor] constructor();
|
|
@@ -765,6 +769,7 @@ interface HTMLAreaElement : HTMLElement {
|
|
|
765
769
|
|
|
766
770
|
// also has obsolete members
|
|
767
771
|
};
|
|
772
|
+
HTMLAreaElement includes HyperlinkElementUtils;
|
|
768
773
|
HTMLAreaElement includes HTMLHyperlinkElementUtils;
|
|
769
774
|
|
|
770
775
|
[Exposed=Window]
|
package/package.json
CHANGED
package/performance-timeline.idl
CHANGED
|
@@ -22,8 +22,8 @@ interface PerformanceEntry {
|
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
callback PerformanceObserverCallback = undefined (PerformanceObserverEntryList entries,
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
PerformanceObserver observer,
|
|
26
|
+
optional PerformanceObserverCallbackOptions options = {});
|
|
27
27
|
[Exposed=(Window,Worker)]
|
|
28
28
|
interface PerformanceObserver {
|
|
29
29
|
constructor(PerformanceObserverCallback callback);
|
|
@@ -30,6 +30,16 @@ partial interface PaymentRequest {
|
|
|
30
30
|
static Promise<SecurePaymentConfirmationAvailability> securePaymentConfirmationAvailability();
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
partial interface PaymentRequest {
|
|
34
|
+
static Promise<SecurePaymentConfirmationCapabilities> getSecurePaymentConfirmationCapabilities();
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
typedef record<DOMString, boolean> SecurePaymentConfirmationCapabilities;
|
|
38
|
+
|
|
39
|
+
enum SecurePaymentConfirmationCapability {
|
|
40
|
+
"browserBoundKeyHardware",
|
|
41
|
+
};
|
|
42
|
+
|
|
33
43
|
partial dictionary AuthenticationExtensionsClientInputs {
|
|
34
44
|
AuthenticationExtensionsPaymentInputs payment;
|
|
35
45
|
};
|
|
@@ -21,6 +21,7 @@ interface Summarizer {
|
|
|
21
21
|
readonly attribute SummarizerType type;
|
|
22
22
|
readonly attribute SummarizerFormat format;
|
|
23
23
|
readonly attribute SummarizerLength length;
|
|
24
|
+
readonly attribute PerformancePreference preference;
|
|
24
25
|
|
|
25
26
|
readonly attribute FrozenArray<DOMString>? expectedInputLanguages;
|
|
26
27
|
readonly attribute FrozenArray<DOMString>? expectedContextLanguages;
|
|
@@ -38,6 +39,7 @@ dictionary SummarizerCreateCoreOptions {
|
|
|
38
39
|
SummarizerType type = "key-points";
|
|
39
40
|
SummarizerFormat format = "markdown";
|
|
40
41
|
SummarizerLength length = "short";
|
|
42
|
+
PerformancePreference preference = "auto";
|
|
41
43
|
|
|
42
44
|
sequence<DOMString> expectedInputLanguages;
|
|
43
45
|
sequence<DOMString> expectedContextLanguages;
|
|
@@ -59,6 +61,7 @@ dictionary SummarizerSummarizeOptions {
|
|
|
59
61
|
enum SummarizerType { "tldr", "teaser", "key-points", "headline" };
|
|
60
62
|
enum SummarizerFormat { "plain-text", "markdown" };
|
|
61
63
|
enum SummarizerLength { "short", "medium", "long" };
|
|
64
|
+
enum PerformancePreference { "auto", "speed", "capability" };
|
|
62
65
|
|
|
63
66
|
[Exposed=Window, SecureContext]
|
|
64
67
|
interface Writer {
|