@webref/idl 3.26.0 → 3.27.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/css-cascade-6.idl +10 -0
- package/dom.idl +1 -1
- package/package.json +1 -1
- package/requestStorageAccessForOrigin.idl +1 -1
- package/webauthn.idl +0 -1
- package/webgpu.idl +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: CSS Cascading and Inheritance Level 6 (https://drafts.csswg.org/css-cascade-6/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface CSSScopeRule : CSSGroupingRule {
|
|
8
|
+
readonly attribute CSSOMString start;
|
|
9
|
+
readonly attribute CSSOMString end;
|
|
10
|
+
};
|
package/dom.idl
CHANGED
|
@@ -618,7 +618,7 @@ callback interface XPathNSResolver {
|
|
|
618
618
|
|
|
619
619
|
interface mixin XPathEvaluatorBase {
|
|
620
620
|
[NewObject] XPathExpression createExpression(DOMString expression, optional XPathNSResolver? resolver = null);
|
|
621
|
-
|
|
621
|
+
Node createNSResolver(Node nodeResolver); // legacy
|
|
622
622
|
// XPathResult.ANY_TYPE = 0
|
|
623
623
|
XPathResult evaluate(DOMString expression, Node contextNode, optional XPathNSResolver? resolver = null, optional unsigned short type = 0, optional XPathResult? result = null);
|
|
624
624
|
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// Source: requestStorageAccessForOrigin API (https://privacycg.github.io/requestStorageAccessForOrigin/)
|
|
5
5
|
|
|
6
6
|
partial interface Document {
|
|
7
|
-
Promise<undefined> requestStorageAccessForOrigin(USVString
|
|
7
|
+
Promise<undefined> requestStorageAccessForOrigin(USVString requestedOrigin);
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
dictionary TopLevelStorageAccessPermissionDescriptor : PermissionDescriptor {
|
package/webauthn.idl
CHANGED
package/webgpu.idl
CHANGED
|
@@ -549,7 +549,7 @@ dictionary GPUPipelineLayoutDescriptor : GPUObjectDescriptorBase {
|
|
|
549
549
|
|
|
550
550
|
[Exposed=(Window, DedicatedWorker), SecureContext]
|
|
551
551
|
interface GPUShaderModule {
|
|
552
|
-
Promise<GPUCompilationInfo>
|
|
552
|
+
Promise<GPUCompilationInfo> getCompilationInfo();
|
|
553
553
|
};
|
|
554
554
|
GPUShaderModule includes GPUObjectBase;
|
|
555
555
|
|