From fdd5936bf8dbfedd59b6f5837ea5f8a0e0db0752 Mon Sep 17 00:00:00 2001
From: Tab Atkins-Bittner ` datablocks, which we do
# want to capture here.
- if ref and ref.spec and doc.refs.spec and ref.spec.lower() != doc.refs.spec.lower():
- spec = ref.spec.lower()
+ if ref and ref.spec and doc.refs.spec and ref.spec.upper() != doc.refs.spec.upper():
+ spec = ref.spec.upper()
key = ref.for_[0] if ref.for_ else ""
- if h.isNormative(el, doc):
- biblioStorage = doc.normativeRefs
- else:
- biblioStorage = doc.informativeRefs
-
# If the ref is from an anchor block, it knows what it's doing.
# Don't follow obsoletion chains.
allowObsolete = ref.status == "anchor-block"
@@ -948,8 +941,8 @@ def processAutolinks(doc: "t.SpecType"):
allowObsolete=allowObsolete,
)
if biblioRef:
- biblioStorage[biblioRef.linkText] = biblioRef
- spec = biblioRef.linkText.lower()
+ spec = biblioRef.linkText.upper()
+ registerBiblioUsage(doc, biblioRef, el=el)
doc.externalRefsUsed[spec]["_biblio"] = biblioRef
doc.externalRefsUsed[spec][ref.text][key] = ref
@@ -967,6 +960,24 @@ def processAutolinks(doc: "t.SpecType"):
h.dedupIDs(doc)
+def registerBiblioUsage(
+ doc: "t.SpecType", ref: biblio.BiblioEntry, el: t.ElementT, type: t.Optional[str] = None
+) -> None:
+ if type is None:
+ if h.isNormative(el, doc):
+ type = "normative"
+ else:
+ type = "informative"
+ if type == "normative":
+ biblioStorage = doc.normativeRefs
+ elif type == "informative":
+ biblioStorage = doc.informativeRefs
+ else:
+ m.die(f"Unknown biblio type {type}.", el=el)
+ return
+ biblioStorage[ref.linkText.upper()] = ref
+
+
def decorateAutolink(doc: "t.SpecType", el, linkType, linkText, ref):
# Add additional effects to autolinks.
if doc.md.slimBuildArtifact:
diff --git a/tests/github/WICG/aom/spec/custom-element-semantics.html b/tests/github/WICG/aom/spec/custom-element-semantics.html
index bf757a92b9..b57c693700 100644
--- a/tests/github/WICG/aom/spec/custom-element-semantics.html
+++ b/tests/github/WICG/aom/spec/custom-element-semantics.html
@@ -1108,13 +1108,13 @@
Terms defined by reference
defined
@@ -1161,6 +1161,8 @@ N
url serializer
@@ -2455,6 +2455,8 @@ Mike West. Content Security Policy Level 3. URL: https://w3c.github.io/webappsec-csp/
IDL Index
Table of Contents
References
N
Informative References
+
+
IDL Index
;
diff --git a/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html b/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html
index a57980b32e..217e1f2b79 100644
--- a/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html
+++ b/tests/github/WICG/background-sync/spec/PeriodicBackgroundSync-index.html
@@ -1769,6 +1769,8 @@ N
Table of Contents
References
N
Informative References
+
+
IDL Index
;
diff --git a/tests/github/WICG/construct-stylesheets/index.html b/tests/github/WICG/construct-stylesheets/index.html
index b5a5081dc8..61fe7b36b5 100644
--- a/tests/github/WICG/construct-stylesheets/index.html
+++ b/tests/github/WICG/construct-stylesheets/index.html
@@ -2102,6 +2102,7 @@ Table of Contents
References
N
Informative References
+
+
IDL Index
= {});
diff --git a/tests/github/WICG/contact-api/spec/index.html b/tests/github/WICG/contact-api/spec/index.html
index 9e2269f30a..27eb52251b 100644
--- a/tests/github/WICG/contact-api/spec/index.html
+++ b/tests/github/WICG/contact-api/spec/index.html
@@ -1426,6 +1426,8 @@ N
Informative References
+
diff --git a/tests/github/WICG/content-index/spec/index.html b/tests/github/WICG/content-index/spec/index.html
index edaebc31ff..5759704fc2 100644
--- a/tests/github/WICG/content-index/spec/index.html
+++ b/tests/github/WICG/content-index/spec/index.html
@@ -752,6 +752,7 @@ Table of Contents
References
N
Informative References
+
+
IDL Index
;
diff --git a/tests/github/WICG/cookie-store/index.html b/tests/github/WICG/cookie-store/index.html
index 494986b8b3..bc81e588ef 100644
--- a/tests/github/WICG/cookie-store/index.html
+++ b/tests/github/WICG/cookie-store/index.html
@@ -2714,7 +2714,7 @@ type
IDL Index
[
N
diff --git a/tests/github/WICG/css-parser-api/index.html b/tests/github/WICG/css-parser-api/index.html
index 11cc6a2a36..4fbfa50e09 100644
--- a/tests/github/WICG/css-parser-api/index.html
+++ b/tests/github/WICG/css-parser-api/index.html
@@ -653,6 +653,7 @@ Table of Contents
References
N
Informative References
+
+
IDL Index
;
;
diff --git a/tests/github/WICG/custom-state-pseudo-class/index.html b/tests/github/WICG/custom-state-pseudo-class/index.html
index e08f87db7b..d77a6561b8 100644
--- a/tests/github/WICG/custom-state-pseudo-class/index.html
+++ b/tests/github/WICG/custom-state-pseudo-class/index.html
@@ -638,6 +638,7 @@ Table of Contents
References
N
Informative References
+
+
IDL Index
;
diff --git a/tests/github/WICG/deprecation-reporting/index.html b/tests/github/WICG/deprecation-reporting/index.html
index db2fb6ed59..dc2789c45b 100644
--- a/tests/github/WICG/deprecation-reporting/index.html
+++ b/tests/github/WICG/deprecation-reporting/index.html
@@ -633,6 +633,7 @@ Table of Contents
References
N
Informative References
+
+
IDL Index
[
: N
Terms defined by reference
@@ -1642,6 +1642,10 @@ N
Informative References
+
diff --git a/tests/github/WICG/encrypted-media-encryption-scheme/index.html b/tests/github/WICG/encrypted-media-encryption-scheme/index.html
index b194254b8c..403db71349 100644
--- a/tests/github/WICG/encrypted-media-encryption-scheme/index.html
+++ b/tests/github/WICG/encrypted-media-encryption-scheme/index.html
@@ -644,6 +644,7 @@ Table of Contents
References
§ 5 Polyfills and Backward Compatibility.
Applications may specify multiple encryption schemes in separate configurations, or in - multiple capabilities of the same configuration.
+ multiple capabilities of the same configuration.The user agent only selects one configuration. So if different encryption schemes are specified in separate configurations, the application will be given back a configuration containing only one encryption scheme.
@@ -950,6 +951,8 @@partial dictionary MediaKeySystemMediaCapability {DOMString ?=
encryptionScheme null ; diff --git a/tests/github/WICG/entries-api/index.html b/tests/github/WICG/entries-api/index.html index 548debfba1..295e5d541f 100644 --- a/tests/github/WICG/entries-api/index.html +++ b/tests/github/WICG/entries-api/index.html @@ -2152,7 +2152,7 @@Terms defined by reference
partial interface File { diff --git a/tests/github/WICG/event-timing/index.html b/tests/github/WICG/event-timing/index.html index 2d4e58e0a0..309c86debb 100644 --- a/tests/github/WICG/event-timing/index.html +++ b/tests/github/WICG/event-timing/index.html @@ -663,6 +663,7 @@Table of Contents
References
[Exposed =Window ]interface :
PerformanceEventTiming PerformanceEntry { diff --git a/tests/github/WICG/file-system-access/index.html b/tests/github/WICG/file-system-access/index.html index 295bd539f7..192a0447f3 100644 --- a/tests/github/WICG/file-system-access/index.html +++ b/tests/github/WICG/file-system-access/index.html @@ -4227,6 +4227,10 @@File and Directory Entries API. cg-draft. URL: https://wicg.github.io/entries-api/
- [FILE-SYSTEM-API]
- Eric Uhrhane. File API: Directories and System. 24 April 2014. NOTE. URL: https://www.w3.org/TR/file-system-api/ +
- [PERMISSIONS] +
- Mounir Lamouri; Marcos Caceres; Jeffrey Yasskin. Permissions. 20 July 2020. WD. URL: https://www.w3.org/TR/permissions/ +
- [STORAGE] +
- Anne van Kesteren. Storage Standard. Living Standard. URL: https://storage.spec.whatwg.org/
IDL Index
enum { diff --git a/tests/github/WICG/get-installed-related-apps/spec/index.html b/tests/github/WICG/get-installed-related-apps/spec/index.html index f599df65ab..a5038bdda6 100644 --- a/tests/github/WICG/get-installed-related-apps/spec/index.html +++ b/tests/github/WICG/get-installed-related-apps/spec/index.html @@ -662,6 +662,7 @@
FileSystemPermissionMode Table of Contents
References- IDL Index
- Issues Index @@ -1209,6 +1210,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [APPMANIFEST] +
- Marcos Caceres; et al. Web Application Manifest. 9 March 2021. WD. URL: https://www.w3.org/TR/appmanifest/ +
IDL Index
dictionary {
RelatedApplication required USVString ; diff --git a/tests/github/WICG/hdcp-detection/index.html b/tests/github/WICG/hdcp-detection/index.html index bfeda1a30f..fd36e90442 100644 --- a/tests/github/WICG/hdcp-detection/index.html +++ b/tests/github/WICG/hdcp-detection/index.html @@ -648,6 +648,7 @@
platform Table of Contents
References- IDL Index
- Issues Index @@ -926,6 +927,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [ENCRYPTED-MEDIA] +
- David Dorwin; et al. Encrypted Media Extensions. 18 September 2017. REC. URL: https://www.w3.org/TR/encrypted-media/ +
IDL Index
dictionary {
MediaKeysPolicy HDCPVersion ; diff --git a/tests/github/WICG/intervention-reporting/index.html b/tests/github/WICG/intervention-reporting/index.html index 2424a5c9b1..4a21edb2a7 100644 --- a/tests/github/WICG/intervention-reporting/index.html +++ b/tests/github/WICG/intervention-reporting/index.html @@ -638,6 +638,7 @@
minHdcpVersion Table of Contents
References- IDL Index @@ -871,10 +872,15 @@
Normative References
+
- [REPORTING-1] -
- Douglas Creager; et al. Reporting API. 25 September 2018. WD. URL: https://www.w3.org/TR/reporting-1/ +
- Reporting API Level 1 URL: https://w3c.github.io/reporting/
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
Informative References
++
- [REPORTING-1] +
- Douglas Creager; et al. Reporting API. 25 September 2018. WD. URL: https://www.w3.org/TR/reporting-1/ +
IDL Index
[Exposed =(Window ,Worker )]interface :
InterventionReportBody ReportBody { diff --git a/tests/github/WICG/keyboard-lock/index.html b/tests/github/WICG/keyboard-lock/index.html index 13732ef2fd..9b5bc11604 100644 --- a/tests/github/WICG/keyboard-lock/index.html +++ b/tests/github/WICG/keyboard-lock/index.html @@ -1320,6 +1320,8 @@N
Informative References
+
- [Fullscreen] +
- Philip Jägenstedt. Fullscreen API Standard. Living Standard. URL: https://fullscreen.spec.whatwg.org/
- [GrabKeyboard]
- X11 GrabKeyboard API. URL: https://www.x.org/releases/X11R7.7/doc/xproto/x11protocol.html#requests:GrabKeyboard
- [LowLevelKeyboardProc] @@ -1328,6 +1330,10 @@
Vincent Scheib. Pointer Lock. 27 October 2016. REC. URL: https://www.w3.org/TR/pointerlock/
- [QuartzEventServices]
- Quartz Event Services. URL: https://developer.apple.com/reference/coregraphics/1658572-quartz_event_services +
- [UIEvents-Code] +
- Gary Kacmarcik; Travis Leithead. UI Events KeyboardEvent code Values. 1 June 2017. CR. URL: https://www.w3.org/TR/uievents-code/ +
- [WebIDL] +
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
IDL Index
partial interface Navigator { diff --git a/tests/github/WICG/keyboard-map/index.html b/tests/github/WICG/keyboard-map/index.html index c9c8c94032..39fd408ccf 100644 --- a/tests/github/WICG/keyboard-map/index.html +++ b/tests/github/WICG/keyboard-map/index.html @@ -734,6 +734,7 @@Table of Contents
References- IDL Index @@ -1404,6 +1405,13 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [UIEVENTS] +
- Gary Kacmarcik; Travis Leithead; Doug Schepers. UI Events. 30 May 2019. WD. URL: https://www.w3.org/TR/uievents/ +
- [UIEvents-Code] +
- Gary Kacmarcik; Travis Leithead. UI Events KeyboardEvent code Values. 1 June 2017. CR. URL: https://www.w3.org/TR/uievents-code/ +
IDL Index
[Exposed =Window ]partial interface Navigator { diff --git a/tests/github/WICG/kv-storage/spec.html b/tests/github/WICG/kv-storage/spec.html index 31404412e5..c4f383d26e 100644 --- a/tests/github/WICG/kv-storage/spec.html +++ b/tests/github/WICG/kv-storage/spec.html @@ -2020,6 +2020,8 @@Anne van Kesteren. Fetch Standard. Living Standard. URL: https://fetch.spec.whatwg.org/
- [SERVICE-WORKERS-1]
- Alex Russell; et al. Service Workers 1. URL: https://w3c.github.io/ServiceWorker/ +
- [WebIDL] +
- Boris Zbarsky. Web IDL. URL: https://heycam.github.io/webidl/
IDL Index
partial interface WindowOrWorkerGlobalScope { diff --git a/tests/github/WICG/largest-contentful-paint/index.html b/tests/github/WICG/largest-contentful-paint/index.html index c5dbf1dd03..2bcf4d1a0a 100644 --- a/tests/github/WICG/largest-contentful-paint/index.html +++ b/tests/github/WICG/largest-contentful-paint/index.html @@ -660,6 +660,7 @@Table of Contents
References- IDL Index @@ -1350,6 +1351,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [PERFORMANCE-TIMELINE-2] +
- Ilya Grigorik. Performance Timeline Level 2. 24 October 2019. WD. URL: https://www.w3.org/TR/performance-timeline-2/ +
IDL Index
[Exposed =Window ]interface :
LargestContentfulPaint PerformanceEntry { diff --git a/tests/github/WICG/layout-instability/index.html b/tests/github/WICG/layout-instability/index.html index d5180bf4be..b3ac3f0b09 100644 --- a/tests/github/WICG/layout-instability/index.html +++ b/tests/github/WICG/layout-instability/index.html @@ -661,6 +661,7 @@Table of Contents
References- IDL Index
- Issues Index @@ -1668,6 +1669,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [CSSOM-VIEW-1] +
- Simon Pieters. CSSOM View Module. 17 March 2016. WD. URL: https://www.w3.org/TR/cssom-view-1/ +
IDL Index
[Exposed =Window ]interface :
LayoutShift PerformanceEntry { diff --git a/tests/github/WICG/page-lifecycle/spec.html b/tests/github/WICG/page-lifecycle/spec.html index 4752b22f30..1db1ffd49b 100644 --- a/tests/github/WICG/page-lifecycle/spec.html +++ b/tests/github/WICG/page-lifecycle/spec.html @@ -1513,7 +1513,7 @@Terms defined by reference
- - [css-houdini] defines the following terms: + [CSS-HOUDINI] defines the following terms:
@@ -1533,7 +1533,7 @@
- owning document
shadow-including tree order
- - [ecma262] defines the following terms: + [ECMA262] defines the following terms:
- blocked
- realm @@ -1581,7 +1581,7 @@
list
- - [intersectionobserver] defines the following terms: + [INTERSECTIONOBSERVER] defines the following terms:
@@ -1597,7 +1597,7 @@
- compute the intersection of a target element and the root
service worker client
partial interface ServiceWorkerGlobalScope {attribute EventHandler ; diff --git a/tests/github/WICG/portals/index.html b/tests/github/WICG/portals/index.html index 8c5ae3de5d..a2a63cb798 100644 --- a/tests/github/WICG/portals/index.html +++ b/tests/github/WICG/portals/index.html @@ -816,7 +816,6 @@
onperiodicsync Table of Contents
References
[Exposed =Window ,HTMLConstructor ]interface :
HTMLPortalElement HTMLElement { diff --git a/tests/github/WICG/responsive-image-client-hints/index.html b/tests/github/WICG/responsive-image-client-hints/index.html index 0af03ad10b..c7002af10a 100644 --- a/tests/github/WICG/responsive-image-client-hints/index.html +++ b/tests/github/WICG/responsive-image-client-hints/index.html @@ -1098,13 +1098,21 @@N
- Ilya Grigorik. HTTP Client Hints. ID. URL: https://tools.ietf.org/html/draft-ietf-httpbis-client-hints
- [I-D.ietf-httpbis-header-structure]
- Mark Nottingham; Poul-Henning Kamp. Structured Headers for HTTP. ID. URL: https://tools.ietf.org/html/draft-ietf-httpbis-header-structure +
- [RESPIMG-USECASES] +
- Marcos Caceres; et al. Use Cases and Requirements for Standardizing Responsive Images. 7 November 2013. NOTE. URL: https://www.w3.org/TR/respimg-usecases/
- [RFC2119]
- S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://datatracker.ietf.org/doc/html/rfc2119
Informative References
+
- [CLIENT-HINTS-INFRASTRUCTURE] +
- Yoav Weiss. Client Hints Infrastructure. CG-DRAFT. URL: https://wicg.github.io/client-hints-infrastructure/
- [CSS-VALUES-4]
- Tab Atkins Jr.; Elika Etemad. CSS Values and Units Module Level 4. 11 November 2020. WD. URL: https://www.w3.org/TR/css-values-4/ +
- [CSSOM-VIEW-1] +
- Simon Pieters. CSSOM View Module. 17 March 2016. WD. URL: https://www.w3.org/TR/cssom-view-1/ +
- [I-D.ietf-httpbis-client-hints] +
- Ilya Grigorik. HTTP Client Hints. ID. URL: https://tools.ietf.org/html/draft-ietf-httpbis-client-hints
- [PERMISSIONS-POLICY-1]
- Ian Clelland. Permissions Policy. 16 July 2020. WD. URL: https://www.w3.org/TR/permissions-policy-1/
- [RFC3864] diff --git a/tests/github/WICG/scroll-to-text-fragment/index.html b/tests/github/WICG/scroll-to-text-fragment/index.html index 906047eb9d..818d744961 100644 --- a/tests/github/WICG/scroll-to-text-fragment/index.html +++ b/tests/github/WICG/scroll-to-text-fragment/index.html @@ -2792,172 +2792,6 @@
3.5.1. Scroll a DOMRect into view (2) (3)
[SecureContext ] diff --git a/tests/github/WICG/web-otp/index.html b/tests/github/WICG/web-otp/index.html index 4cd76e0fc5..2883e27334 100644 --- a/tests/github/WICG/web-otp/index.html +++ b/tests/github/WICG/web-otp/index.html @@ -1467,8 +1467,12 @@N
Informative References
+
- [SMS-ONE-TIME-CODES] +
- Origin-bound one-time codes delivered via SMS. cg-draft. URL: https://wicg.github.io/sms-one-time-codes/
- [URL]
- Anne van Kesteren. URL Standard. Living Standard. URL: https://url.spec.whatwg.org/ +
- [WebIDL] +
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
IDL Index
[Exposed =Window ,SecureContext ] diff --git a/tests/github/WICG/webpackage/loading.html b/tests/github/WICG/webpackage/loading.html index 24ea982008..6ec4d27583 100644 --- a/tests/github/WICG/webpackage/loading.html +++ b/tests/github/WICG/webpackage/loading.html @@ -3817,7 +3817,7 @@node document
- [draft-ietf-httpbis-header-structure] defines the following terms: + [DRAFT-IETF-HTTPBIS-HEADER-STRUCTURE] defines the following terms: @@ -4139,12 +4139,20 @@
- parsing http1 header fields into structured headers
N
Informative References
+
diff --git a/tests/github/WICG/webusb/index.html b/tests/github/WICG/webusb/index.html index c805900f40..79a09ec381 100644 --- a/tests/github/WICG/webusb/index.html +++ b/tests/github/WICG/webusb/index.html @@ -3555,6 +3555,8 @@- [DRAFT-YASSKIN-HTTP-ORIGIN-SIGNED-RESPONSES] +
- Jeffrey Yasskin. Signed HTTP Exchanges. ED. URL: https://wicg.github.io/webpackage/draft-yasskin-http-origin-signed-responses.html +
- [DRAFT-YASSKIN-HTTPBIS-ORIGIN-SIGNED-EXCHANGES-IMPL-02] +
- Jeffrey Yasskin; Kouhei Ueno. Signed HTTP Exchanges Implementation Checkpoints. ED. URL: https://tools.ietf.org/html/draft-yasskin-httpbis-origin-signed-exchanges-impl-02
- [DRAFT-YASSKIN-HTTPBIS-ORIGIN-SIGNED-EXCHANGES-IMPL-03]
- Jeffrey Yasskin; Kouhei Ueno. Signed HTTP Exchanges Implementation Checkpoints. ED. URL: https://tools.ietf.org/html/draft-yasskin-httpbis-origin-signed-exchanges-impl-03
- [HTTP-DIG-ALG]
- Hypertext Transfer Protocol (HTTP) Digest Algorithm Values. LS. URL: https://www.iana.org/assignments/http-dig-alg/http-dig-alg.xhtml +
- [NETWORK-ERROR-LOGGING-1] +
- Douglas Creager; et al. Network Error Logging. 25 September 2018. WD. URL: https://www.w3.org/TR/network-error-logging-1/
- [RFC3230]
- J. Mogul; A. Van Hoff. Instance Digests in HTTP. January 2002. Proposed Standard. URL: https://datatracker.ietf.org/doc/html/rfc3230 +
- [RFC8288] +
- M. Nottingham. Web Linking. October 2017. Proposed Standard. URL: https://httpwg.org/specs/rfc8288.html
- [SERVICE-WORKERS-1]
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/
[CORS] Anne van Kesteren. Cross-Origin Resource Sharing. 2 June 2020. REC. URL: https://www.w3.org/TR/cors/ + [PERMISSIONS] + Mounir Lamouri; Marcos Caceres; Jeffrey Yasskin. Permissions. 20 July 2020. WD. URL: https://www.w3.org/TR/permissions/ [POWERFUL-FEATURES] Mike West. Secure Contexts. 15 September 2016. CR. URL: https://www.w3.org/TR/secure-contexts/ [RFC4122] diff --git a/tests/github/WICG/webusb/test/index.html b/tests/github/WICG/webusb/test/index.html index c4d34feda4..8a15e8a8a4 100644 --- a/tests/github/WICG/webusb/test/index.html +++ b/tests/github/WICG/webusb/test/index.html @@ -645,6 +645,7 @@ Table of Contents
ReferencesIDL Index @@ -1531,6 +1532,13 @@ N
[WebUSB] WebUSB API. cg-draft. URL: https://wicg.github.io/webusb/ + Informative References
++
- [WebIDL] +
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
- [WebUSB] +
- WebUSB API. cg-draft. URL: https://wicg.github.io/webusb/ +
IDL Index
partial interface USB { [SameObject ]readonly attribute USBTest ; diff --git a/tests/github/WebAudio/web-audio-api/index.html b/tests/github/WebAudio/web-audio-api/index.html index 232b5861a1..a10c581394 100644 --- a/tests/github/WebAudio/web-audio-api/index.html +++ b/tests/github/WebAudio/web-audio-api/index.html @@ -17085,11 +17085,13 @@
test N
[HR-TIME-2] Ilya Grigorik. High Resolution Time Level 2. 21 November 2019. REC. URL: https://www.w3.org/TR/hr-time-2/ [HTML] - Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/ + A vocabulary and associated APIs for HTML and XHTML URL: https://html.spec.whatwg.org/multipage/ [INFRA] Anne van Kesteren; Domenic Denicola. Infra Standard. Living Standard. URL: https://infra.spec.whatwg.org/ [MEDIACAPTURE-STREAMS] Cullen Jennings; et al. Media Capture and Streams. 22 March 2021. CR. URL: https://www.w3.org/TR/mediacapture-streams/ + [MIMESNIFF] + Gordon P. Hemsley. MIME Sniffing Standard. Living Standard. URL: https://mimesniff.spec.whatwg.org/ [RFC2119] S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://datatracker.ietf.org/doc/html/rfc2119 [WebIDL] @@ -17101,14 +17103,18 @@
[2DCONTEXT] Rik Cabanier; et al. HTML Canvas 2D Context. 28 January 2021. REC. URL: https://www.w3.org/TR/2dcontext/ + [HTML] + A vocabulary and associated APIs for HTML and XHTML URL: https://html.spec.whatwg.org/multipage/ + [MEDIACAPTURE-STREAMS] + Cullen Jennings; et al. Media Capture and Streams. 22 March 2021. CR. URL: https://www.w3.org/TR/mediacapture-streams/ [MEDIASTREAM-RECORDING] Miguel Casas-sanchez; James Barnett; Travis Leithead. MediaStream Recording. 16 February 2021. WD. URL: https://www.w3.org/TR/mediastream-recording/ - [MIMESNIFF] - Gordon P. Hemsley. MIME Sniffing Standard. Living Standard. URL: https://mimesniff.spec.whatwg.org/ [WEBAUDIO-USECASES] Joe Berkovitz; Olivier Thereaux. Web Audio Processing: Use Cases and Requirements. 29 January 2013. NOTE. URL: https://www.w3.org/TR/webaudio-usecases/ [WEBGL] Dean Jackson; Jeff Gilbert. WebGL 2.0 Specification. 12 August 2017. URL: https://www.khronos.org/registry/webgl/specs/latest/2.0/ + [WebIDL] + Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ [XHR] Anne van Kesteren. XMLHttpRequest Standard. Living Standard. URL: https://xhr.spec.whatwg.org/ diff --git a/tests/github/WebBluetoothCG/web-bluetooth/index.html b/tests/github/WebBluetoothCG/web-bluetooth/index.html index 5a490b72ea..f537be4a51 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/index.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/index.html @@ -6761,6 +6761,12 @@
[CSP3] Mike West. Content Security Policy Level 3. 24 March 2021. WD. URL: https://www.w3.org/TR/CSP3/ + [ECMAScript] + ECMAScript Language Specification. URL: https://tc39.es/ecma262/ + [PERMISSIONS] + Mounir Lamouri; Marcos Caceres; Jeffrey Yasskin. Permissions. 20 July 2020. WD. URL: https://www.w3.org/TR/permissions/ + [WebIDL] + Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ IDL Index
dictionary { diff --git a/tests/github/WebBluetoothCG/web-bluetooth/scanning.html b/tests/github/WebBluetoothCG/web-bluetooth/scanning.html index 449f9ec015..4165a4932a 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/scanning.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/scanning.html @@ -1926,8 +1926,14 @@
BluetoothDataFilterInit N
Informative References
+
- [ECMAScript] +
- ECMAScript Language Specification. URL: https://tc39.es/ecma262/
- [GEOLOCATION-API]
- Andrei Popescu. Geolocation API Specification 2nd Edition. 8 November 2016. REC. URL: https://www.w3.org/TR/geolocation-API/ +
- [PERMISSIONS] +
- Mounir Lamouri; Marcos Caceres; Jeffrey Yasskin. Permissions. 20 July 2020. WD. URL: https://www.w3.org/TR/permissions/ +
- [WEB-BLUETOOTH] +
- Jeffrey Yasskin. Web Bluetooth. Draft Community Group Report. URL: https://webbluetoothcg.github.io/web-bluetooth/
IDL Index
dictionary { diff --git a/tests/github/WebBluetoothCG/web-bluetooth/tests.html b/tests/github/WebBluetoothCG/web-bluetooth/tests.html index e73609133f..feef697d6a 100644 --- a/tests/github/WebBluetoothCG/web-bluetooth/tests.html +++ b/tests/github/WebBluetoothCG/web-bluetooth/tests.html @@ -1039,7 +1039,7 @@
BluetoothLEScanOptions Terms defined by reference
- - [bluetooth-assigned] defines the following terms: + [BLUETOOTH-ASSIGNED] defines the following terms:
- org.bluetooth.characteristic.gap.device_name
- org.bluetooth.descriptor.gatt.characteristic_extended_properties diff --git a/tests/github/heycam/webidl/index.html b/tests/github/heycam/webidl/index.html index 04b1dc4351..c1080d1dbf 100644 --- a/tests/github/heycam/webidl/index.html +++ b/tests/github/heycam/webidl/index.html @@ -16390,8 +16390,12 @@
N
- [DOM]
- Anne van Kesteren. DOM Standard. Living Standard. URL: https://dom.spec.whatwg.org/ +
- [DOM-Level-3-Core] +
- Arnaud Le Hors; et al. Document Object Model (DOM) Level 3 Core Specification. 7 April 2004. REC. URL: https://www.w3.org/TR/DOM-Level-3-Core/
- [ECMA-262]
- ECMAScript Language Specification. URL: https://tc39.es/ecma262/ +
- [ECMA-402] +
- ECMAScript Internationalization API Specification. URL: https://tc39.es/ecma402/
- [HTML]
- Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/
- [IEEE-754] diff --git a/tests/github/immersive-web/anchors/index.html b/tests/github/immersive-web/anchors/index.html index bea4424574..794aee31f2 100644 --- a/tests/github/immersive-web/anchors/index.html +++ b/tests/github/immersive-web/anchors/index.html @@ -710,6 +710,7 @@
Table of Contents
References- IDL Index
- Issues Index @@ -1220,7 +1221,7 @@
XRSpace
- - [webxr device api - level 1] defines the following terms: + [WEBXR DEVICE API - LEVEL 1] defines the following terms:
- active
- capable of supporting @@ -1235,7 +1236,7 @@
xr device (for XRSession)
- - [webxr hit test module] defines the following terms: + [WEBXR HIT TEST MODULE] defines the following terms:
- XRHitTestResult
- frame @@ -1260,6 +1261,13 @@
N
- [WEBXR-AR-MODULE-1]
- Brandon Jones; Nell Waliczek; Manish Goregaokar. WebXR Augmented Reality Module - Level 1. 10 October 2019. WD. URL: https://www.w3.org/TR/webxr-ar-module-1/ +
Informative References
++
- [WEBXR] +
- Brandon Jones; Manish Goregaokar; Nell Waliczek. WebXR Device API. 24 July 2020. WD. URL: https://www.w3.org/TR/webxr/ +
- [WEBXR-AR-MODULE-1] +
- Brandon Jones; Nell Waliczek; Manish Goregaokar. WebXR Augmented Reality Module - Level 1. 10 October 2019. WD. URL: https://www.w3.org/TR/webxr-ar-module-1/ +
IDL Index
[SecureContext ,Exposed =Window ]interface { diff --git a/tests/github/immersive-web/depth-sensing/index.html b/tests/github/immersive-web/depth-sensing/index.html index d571b226cc..86dea784b0 100644 --- a/tests/github/immersive-web/depth-sensing/index.html +++ b/tests/github/immersive-web/depth-sensing/index.html @@ -1556,7 +1556,7 @@
XRAnchor contain
- - [webgl 2.0] defines the following terms: + [WEBGL 2.0] defines the following terms:
@@ -1597,7 +1597,7 @@
- r32f
session
- [webxr device api - level 1] defines the following terms: + [WEBXR DEVICE API - LEVEL 1] defines the following terms:
- XRFrame
- XRSession @@ -1614,7 +1614,7 @@
xr device
- [webxr layers] defines the following terms: + [WEBXR LAYERS] defines the following terms: @@ -1642,6 +1642,8 @@
- opaque texture
N
Informative References
+
diff --git a/tests/github/immersive-web/dom-overlays/index.html b/tests/github/immersive-web/dom-overlays/index.html index 366e99d0e6..394e7085f4 100644 --- a/tests/github/immersive-web/dom-overlays/index.html +++ b/tests/github/immersive-web/dom-overlays/index.html @@ -979,18 +979,6 @@- [WEBXR] +
- Brandon Jones; Manish Goregaokar; Nell Waliczek. WebXR Device API. 24 July 2020. WD. URL: https://www.w3.org/TR/webxr/
- [WEBXR-AR-MODULE-1]
- Brandon Jones; Nell Waliczek; Manish Goregaokar. WebXR Augmented Reality Module - Level 1. 10 October 2019. WD. URL: https://www.w3.org/TR/webxr-ar-module-1/
2.2. CSS pseudo-class - - - - - -