diff --git a/bikeshed/Spec.py b/bikeshed/Spec.py index 4d8feccbf9..2addc2887f 100644 --- a/bikeshed/Spec.py +++ b/bikeshed/Spec.py @@ -244,8 +244,8 @@ def processDocument(self): u.formatArgumentdefTables(self) u.formatElementdefTables(self) u.processAutolinks(self) + u.fixInterDocumentReferences(self) biblio.dedupBiblioReferences(self) - u.verifyUsageOfAllLocalBiblios(self) caniuse.addCanIUsePanels(self) boilerplate.addIndexSection(self) boilerplate.addExplicitIndexes(self) @@ -269,6 +269,7 @@ def processDocument(self): fingerprinting.addTrackingVector(self) u.fixIntraDocumentReferences(self) u.fixInterDocumentReferences(self) + u.verifyUsageOfAllLocalBiblios(self) u.removeMultipleLinks(self) u.forceCrossorigin(self) lint.brokenLinks(self) diff --git a/bikeshed/biblio.py b/bikeshed/biblio.py index 3724eeccbe..89ed91ec70 100644 --- a/bikeshed/biblio.py +++ b/bikeshed/biblio.py @@ -525,4 +525,4 @@ def isShepherdRef(ref): if keys["shepherd"] in doc.externalRefsUsed: for k, v in list(doc.externalRefsUsed[keys["shepherd"]].items()): doc.externalRefsUsed[keys["specref"]][k] = v - del doc.externalRefsUsed[keys["shepherd"]] + del doc.externalRefsUsed[keys["shepherd"]] diff --git a/bikeshed/unsortedJunk.py b/bikeshed/unsortedJunk.py index d5456226fc..d1069ba7ec 100644 --- a/bikeshed/unsortedJunk.py +++ b/bikeshed/unsortedJunk.py @@ -445,13 +445,13 @@ def fixInterDocumentReferences(doc: "t.SpecType"): ) -def fillInterDocumentReferenceFromShepherd(doc: "t.SpecType", el, spec, section): - specData = doc.refs.fetchHeadings(spec) - if section in specData: - heading = specData[section] +def fillInterDocumentReferenceFromShepherd(doc: "t.SpecType", el, specName, section): + headingData = doc.refs.fetchHeadings(specName) + if section in headingData: + heading = headingData[section] else: m.die( - f"Couldn't find section '{section}' in spec '{spec}':\n{h.outerHTML(el)}", + f"Couldn't find section '{section}' in spec '{specName}':\n{h.outerHTML(el)}", el=el, ) return @@ -459,16 +459,17 @@ def fillInterDocumentReferenceFromShepherd(doc: "t.SpecType", el, spec, section) # Multipage spec if len(heading) == 1: # only one heading of this name, no worries - heading = specData[heading[0]] + heading = headingData[heading[0]] else: # multiple headings of this id, user needs to disambiguate m.die( - f"Multiple headings with id '{section}' for spec '{spec}'. Please specify:\n" - + "\n".join(" [[{}]]".format(spec + x) for x in heading), + f"Multiple headings with id '{section}' for spec '{specName}'. Please specify:\n" + + "\n".join(f" [[{specName + x}]]" for x in heading), el=el, ) return if doc.md.status == "current": + # FIXME: doc.md.status is not these values if "current" in heading: heading = heading["current"] else: @@ -485,6 +486,11 @@ def fillInterDocumentReferenceFromShepherd(doc: "t.SpecType", el, spec, section) h.appendChild(el, " §\u202f{number} {text}".format(**heading)) h.removeAttr(el, "data-link-spec", "spec-section") + # Mark this as a used biblio ref + specData = doc.refs.specs[specName] + bib = biblio.SpecBasedBiblioEntry(specData) + registerBiblioUsage(doc, bib, el=el) + def fillInterDocumentReferenceFromSpecref(doc: "t.SpecType", el, spec, section): bib = doc.refs.getBiblioRef(spec) @@ -497,6 +503,9 @@ def fillInterDocumentReferenceFromSpecref(doc: "t.SpecType", el, spec, section): el.text = bib.title + " §\u202f" + section[1:] h.removeAttr(el, "data-link-spec", "spec-section") + # Mark this as a used biblio ref + registerBiblioUsage(doc, bib, el=el) + def processDfns(doc: "t.SpecType"): dfns = h.findAll(config.dfnElementsSelector, doc) @@ -767,17 +776,6 @@ def classifyLink(el): def processBiblioLinks(doc: "t.SpecType"): biblioLinks = h.findAll("a[data-link-type='biblio']", doc) for el in biblioLinks: - biblioType = el.get("data-biblio-type") - if biblioType == "normative": - storage = doc.normativeRefs - elif biblioType == "informative": - storage = doc.informativeRefs - else: - m.die( - f"Unknown data-biblio-type value '{biblioType}' on {h.outerHTML(el)}. Only 'normative' and 'informative' allowed.", - el=el, - ) - continue linkText = determineLinkText(el) if linkText[0] == "[" and linkText[-1] == "]": @@ -828,7 +826,7 @@ def processBiblioLinks(doc: "t.SpecType"): doc.refs.preferredBiblioNames[ref.linkText] = linkText # Use it on the current ref. Future ones will use the preferred name automatically. ref.linkText = linkText - storage[ref.linkText] = ref + registerBiblioUsage(doc, ref, el=el, type=el.get("data-biblio-type")) id = config.simplifyText(ref.linkText) el.set("href", "#biblio-" + id) @@ -853,8 +851,8 @@ def verifyUsageOfAllLocalBiblios(doc: "t.SpecType"): were used in the spec, so you can remove entries when they're no longer necessary. """ - usedBiblioKeys = {x.lower() for x in list(doc.normativeRefs.keys()) + list(doc.informativeRefs.keys())} - localBiblios = [b["linkText"].lower() for bs in doc.refs.biblios.values() for b in bs if b["order"] == 1] + usedBiblioKeys = {x.upper() for x in list(doc.normativeRefs.keys()) + list(doc.informativeRefs.keys())} + localBiblios = [b["linkText"].upper() for bs in doc.refs.biblios.values() for b in bs if b["order"] == 1] unusedBiblioKeys = [] for b in localBiblios: if b not in usedBiblioKeys: @@ -927,15 +925,10 @@ def processAutolinks(doc: "t.SpecType"): # rather than checking `status == "local"`, as "local" refs include # those defined in `
` 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
partial interface Window { diff --git a/tests/github/WICG/background-fetch/index.html b/tests/github/WICG/background-fetch/index.html index 4a761bc10a..e98dd062a4 100644 --- a/tests/github/WICG/background-fetch/index.html +++ b/tests/github/WICG/background-fetch/index.html @@ -758,6 +758,7 @@Table of Contents
References
partial interface ServiceWorkerGlobalScope {attribute EventHandler ; 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 @@
onbackgroundfetchsuccess N
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 [SERVICE-WORKERS-1] Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ + [SERVICE-WORKERS-1] + Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ [WEB-BACKGROUND-SYNC] Web Background Synchronization. cg-draft. URL: https://wicg.github.io/background-sync/spec/ [WebIDL] diff --git a/tests/github/WICG/background-sync/spec/index.html b/tests/github/WICG/background-sync/spec/index.html index 38ca159968..bb372d15f7 100644 --- a/tests/github/WICG/background-sync/spec/index.html +++ b/tests/github/WICG/background-sync/spec/index.html @@ -698,6 +698,7 @@ Table of Contents
ReferencesIDL Index @@ -1359,6 +1360,11 @@ N
[WebIDL] Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ + Informative References
++
- [SERVICE-WORKERS-1] +
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ +
IDL Index
partial interface ServiceWorkerRegistration {readonly attribute SyncManager ; 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 @@
sync Table of Contents
ReferencesIDL Index @@ -2827,6 +2828,11 @@ N
[WebIDL] Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ + Informative References
++
- [CSS-CASCADE-5] +
- Elika Etemad; Miriam Suzanne; Tab Atkins Jr.. CSS Cascading and Inheritance Level 5. 19 March 2021. WD. URL: https://www.w3.org/TR/css-cascade-5/ +
IDL Index
partial interface CSSStyleSheet {constructor (optional CSSStyleSheetInit = {}); 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 @@
options 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 @@- [FileAPI] +
- Marijn Kruisselbrink; Arun Ranganathan. File API. 11 September 2019. WD. URL: https://www.w3.org/TR/FileAPI/
- [MIMESNIFF]
- Gordon P. Hemsley. MIME Sniffing Standard. Living Standard. URL: https://mimesniff.spec.whatwg.org/
Table of Contents
ReferencesIDL Index Issues Index @@ -1992,6 +1993,11 @@ N
[WebIDL] Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ + Informative References
++
- [SERVICE-WORKERS-1] +
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ +
IDL Index
partial interface ServiceWorkerGlobalScope {attribute EventHandler ; 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 @@
oncontentdelete type
- [ecma262] defines the following terms: + [ECMA262] defines the following terms:
- promise
- time values @@ -2839,6 +2839,10 @@
- [ECMAScript]
- ECMAScript Language Specification. URL: https://tc39.es/ecma262/ +
- [RFC6265bis] +
- A. Barth; M. West. Cookies: HTTP State Management Mechanism. Internet-Draft. URL: https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis +
- [Service-Workers] +
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/
IDL Index
[Exposed =(ServiceWorker ,Window ), diff --git a/tests/github/WICG/crash-reporting/index.html b/tests/github/WICG/crash-reporting/index.html index 49f4097cdc..c27c69305e 100644 --- a/tests/github/WICG/crash-reporting/index.html +++ b/tests/github/WICG/crash-reporting/index.html @@ -863,6 +863,8 @@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 @@
- [REPORTING]
- Douglas Creager; et al. Reporting API. 25 September 2018. WD. URL: https://www.w3.org/TR/reporting-1/ +
- [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/
Table of Contents
References- IDL Index
- Issues Index @@ -1061,6 +1062,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [CSS-TYPED-OM-1] +
- Shane Stephens; Tab Atkins Jr.; Naina Raisinghani. CSS Typed OM Level 1. 10 April 2018. WD. URL: https://www.w3.org/TR/css-typed-om-1/ +
IDL Index
typedef (DOMString or ReadableStream );
CSSStringSource typedef (DOMString or CSSStyleValue or CSSParserValue ); 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 @@
CSSToken Table of Contents
References- IDL Index
- Issues Index @@ -971,6 +972,13 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [CSS-VALUES-4] +
- Tab Atkins Jr.; Elika Etemad. CSS Values and Units Module Level 4. URL: https://drafts.csswg.org/css-values-4/ +
- [SELECTORS-4] +
- Elika Etemad; Tab Atkins Jr.. Selectors Level 4. URL: https://drafts.csswg.org/selectors/ +
IDL Index
partial interface ElementInternals {readonly attribute CustomStateSet ; 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 @@
states Table of Contents
References- IDL Index @@ -888,10 +889,15 @@
N
- [ECMASCRIPT]
- ECMAScript Language Specification. URL: https://tc39.es/ecma262/
- [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 :
DeprecationReportBody ReportBody { diff --git a/tests/github/WICG/document-policy/index.html b/tests/github/WICG/document-policy/index.html index d3aca0f1aa..4ac74fdc7b 100644 --- a/tests/github/WICG/document-policy/index.html +++ b/tests/github/WICG/document-policy/index.html @@ -1786,6 +1786,8 @@N
- Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/
- [REPORTING]
- Douglas Creager; et al. Reporting API. 25 September 2018. WD. URL: https://www.w3.org/TR/reporting-1/ +
- [REPORTING-1] +
- Reporting API Level 1 URL: https://w3c.github.io/reporting/
- [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
- [RFC3864] diff --git a/tests/github/WICG/element-timing/index.html b/tests/github/WICG/element-timing/index.html index 36c7222d0c..5e2302a9bb 100644 --- a/tests/github/WICG/element-timing/index.html +++ b/tests/github/WICG/element-timing/index.html @@ -1481,7 +1481,7 @@
Terms defined by reference
@@ -1031,6 +1034,13 @@
- - [css] defines the following terms: + [CSS] defines the following terms:
@@ -1642,6 +1642,10 @@
- painting order
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 @@- [CSS-BACKGROUNDS-3] +
- Bert Bos; Elika Etemad; Brad Kemper. CSS Backgrounds and Borders Module Level 3. 22 December 2020. CR. URL: https://www.w3.org/TR/css-backgrounds-3/ +
- [PERFORMANCE-TIMELINE-2] +
- Ilya Grigorik. Performance Timeline Level 2. 24 October 2019. WD. URL: https://www.w3.org/TR/performance-timeline-2/
- [RFC2397]
- L. Masinter. The "data" URL scheme. August 1998. Proposed Standard. URL: https://datatracker.ietf.org/doc/html/rfc2397
Table of Contents
References- IDL Index
- Issues Index @@ -738,7 +739,7 @@
§ 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 @@1. MediaKeySystemMediaCapability dictionary extension (2) +
- 4. + Application Notes
- 5. Polyfills and Backward Compatibility (2) (3)
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/ +
- [WebIDL] +
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
IDL Index
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
- - [ecma262] defines the following terms: + [ECMA262] defines the following terms:
- asynciterator
- promise @@ -2228,6 +2228,8 @@
ECMAScript Language Specification. URL: https://tc39.es/ecma262/
- [FILE-SYSTEM-API]
- Eric Uhrhane. File API: Directories and System. 24 April 2014. NOTE. URL: https://www.w3.org/TR/file-system-api/ +
- [FileAPI] +
- Marijn Kruisselbrink; Arun Ranganathan. File API. 11 September 2019. WD. URL: https://www.w3.org/TR/FileAPI/
IDL Index
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- IDL Index
- Issues Index @@ -1858,6 +1859,17 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [HR-TIME-2] +
- Ilya Grigorik. High Resolution Time Level 2. 21 November 2019. REC. URL: https://www.w3.org/TR/hr-time-2/ +
- [POINTEREVENTS] +
- Jacob Rossi; Matt Brubeck. Pointer Events. 4 April 2019. REC. URL: https://www.w3.org/TR/pointerevents/ +
- [TOUCH-EVENTS] +
- Doug Schepers; et al. Touch Events. 10 October 2013. REC. URL: https://www.w3.org/TR/touch-events/ +
- [UIEVENTS] +
- Gary Kacmarcik; Travis Leithead; Doug Schepers. UI Events. 30 May 2019. WD. URL: https://www.w3.org/TR/uievents/ +
IDL Index
[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
- - [serviceworker] defines the following terms: + [SERVICEWORKER] defines the following terms:
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- create client
- create window client diff --git a/tests/github/WICG/periodic-background-sync/index.html b/tests/github/WICG/periodic-background-sync/index.html index cd5317f0fe..d8dd13c721 100644 --- a/tests/github/WICG/periodic-background-sync/index.html +++ b/tests/github/WICG/periodic-background-sync/index.html @@ -732,6 +732,7 @@
Table of Contents
References- IDL Index @@ -1721,6 +1722,11 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/ +
Informative References
++
- [SERVICE-WORKERS-1] +
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ +
IDL Index
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- IDL Index
- Issues Index @@ -2923,12 +2922,16 @@
N
-
- [CSP]
- Mike West. Content Security Policy Level 3. 24 March 2021. WD. URL: https://www.w3.org/TR/CSP3/ +
- [CSP] +
- Mike West. Content Security Policy Level 3. 24 March 2021. WD. URL: https://www.w3.org/TR/CSP3/
- [DOM]
- Anne van Kesteren. DOM Standard. Living Standard. URL: https://dom.spec.whatwg.org/
- [ECMASCRIPT]
- ECMAScript Language Specification. URL: https://tc39.es/ecma262/
- [FETCH]
- Anne van Kesteren. Fetch Standard. Living Standard. URL: https://fetch.spec.whatwg.org/ +
- [FETCH-METADATA] +
- Mike West. Fetch Metadata Request Headers. 13 March 2021. WD. URL: https://www.w3.org/TR/fetch-metadata/
- [HTML]
- Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/
- [INFRA] @@ -2944,11 +2947,6 @@
N
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
Informative References
--
- [FETCH-METADATA] -
- Mike West. Fetch Metadata Request Headers. 13 March 2021. WD. URL: https://www.w3.org/TR/fetch-metadata/ -
IDL Index
[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)
- - [ecma262] defines the following terms: + [ECMA262] defines the following terms:
@@ -2193,12 +2193,14 @@
- agent
N
Informative References
-
- [IndexedDB-2] -
- Ali Alabbas; Joshua Bell. Indexed Database API 2.0. 30 January 2018. REC. URL: https://www.w3.org/TR/IndexedDB-2/ -
- [Service-Workers] -
- Alex Russell; et al. Service Workers 1. 19 November 2019. CR. URL: https://www.w3.org/TR/service-workers-1/ +
- [INDEXEDDB-2] +
- Indexed Database API 2.0 URL: https://w3c.github.io/IndexedDB/ +
- [SERVICE-WORKERS] +
- Service Workers URL: https://www.w3.org/TR/service-workers-1/
- [Storage]
- Anne van Kesteren. Storage Standard. Living Standard. URL: https://storage.spec.whatwg.org/ +
- [WebIDL] +
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
IDL Index
[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 - - - - - -